From: Günther Deschner Date: Mon, 14 Jan 2008 13:18:53 +0000 (+0100) Subject: Print principal in debug statement in kerberos_kinit_password() as well. X-Git-Tag: samba-3.2.0pre2~44^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44d67e84625a2a1a93baecef0e418b48e982443b;p=thirdparty%2Fsamba.git Print principal in debug statement in kerberos_kinit_password() as well. Guenther --- diff --git a/source/libads/kerberos.c b/source/libads/kerberos.c index 4fc23956bde..e9222e84018 100644 --- a/source/libads/kerberos.c +++ b/source/libads/kerberos.c @@ -209,7 +209,8 @@ int kerberos_kinit_password_ext(const char *principal, krb5_set_real_time(ctx, time(NULL) + time_offset, 0); } - DEBUG(10,("kerberos_kinit_password: using [%s] as ccache and config [%s]\n", + DEBUG(10,("kerberos_kinit_password: as %s using [%s] as ccache and config [%s]\n", + principal, cache_name ? cache_name: krb5_cc_default_name(ctx), getenv("KRB5_CONFIG")));