From: fredrik Date: Sun, 28 May 2006 04:01:18 +0000 (+0000) Subject: Avoid warning. X-Git-Tag: 0.1~30 X-Git-Url: http://git.dolda2000.com/gitweb/?p=doldaconnect.git;a=commitdiff_plain;h=d2a3e34aad6590a6a228d367378c534ab3b89bca Avoid warning. git-svn-id: svn+ssh://svn.dolda2000.com/srv/svn/repos/src/doldaconnect@616 959494ce-11ee-0310-bf91-de5d638817bd --- 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); }