diff options
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/pass_check.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/auth/pass_check.c b/source3/auth/pass_check.c index edb4c97290..d847407bbb 100644 --- a/source3/auth/pass_check.c +++ b/source3/auth/pass_check.c @@ -542,6 +542,8 @@ static BOOL krb5_auth(char *user,char *password) #endif /* KRB5_AUTH */ #ifdef KRB4_AUTH +#include <krb.h> + /******************************************************************* check on Kerberos authentication ********************************************************************/ @@ -555,7 +557,7 @@ static BOOL krb4_auth(char *user,char *password) } (void) slprintf(tkfile, sizeof(tkfile) - 1, "/tmp/samba_tkt_%d", - getpid()); + (int)getpid()); krb_set_tkt_string(tkfile); if (krb_verify_user(user, "", realm, |