diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-19 09:53:30 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-19 09:53:30 +0000 |
commit | adf44a9bd0d997ba4dcfadc564a29149531525af (patch) | |
tree | 36f68b5ee8f140ce88c21672f2f6e471bcb368e7 /source/libsmb/clikrb5.c | |
parent | ee1c3e1f044b4ef62169ad74c5cac40eef81bfda (diff) | |
download | samba-adf44a9bd0d997ba4dcfadc564a29149531525af.tar.gz samba-adf44a9bd0d997ba4dcfadc564a29149531525af.tar.xz samba-adf44a9bd0d997ba4dcfadc564a29149531525af.zip |
added trusted realm support to ADS authentication
the method used for checking if a domain is a trusted domain is very
crude, we should really call a backend fn of some sort. For now I'm
using winbindd to do the dirty work.
Diffstat (limited to 'source/libsmb/clikrb5.c')
-rw-r--r-- | source/libsmb/clikrb5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/libsmb/clikrb5.c b/source/libsmb/clikrb5.c index 03fb6a56690..cc77c08d26a 100644 --- a/source/libsmb/clikrb5.c +++ b/source/libsmb/clikrb5.c @@ -60,8 +60,8 @@ static krb5_error_code krb5_mk_req2(krb5_context context, if ((retval = krb5_get_credentials(context, 0, ccache, &creds, &credsp))) { - DEBUG(1,("krb5_get_credentials failed (%s)\n", - error_message(retval))); + DEBUG(1,("krb5_get_credentials failed for %s (%s)\n", + principal, error_message(retval))); goto cleanup_creds; } |