From d2a3e34aad6590a6a228d367378c534ab3b89bca Mon Sep 17 00:00:00 2001 From: fredrik Date: Sun, 28 May 2006 04:01:18 +0000 Subject: [PATCH] Avoid warning. git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/doldaconnect@616 959494ce-11ee-0310-bf91-de5d638817bd --- daemon/auth-krb5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/auth-krb5.c b/daemon/auth-krb5.c index 07b9cda..5409692 100644 --- a/daemon/auth-krb5.c +++ b/daemon/auth-krb5.c @@ -460,7 +460,7 @@ static int opensess(struct authhandle *auth) } free(buf); } else { - if((buf = krb5_cc_default_name(k5context)) == NULL) { + if((buf = (char *)krb5_cc_default_name(k5context)) == NULL) { flog(LOG_ERR, "could not get default ccache name"); return(AUTH_ERR); } -- 2.11.0