diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-02-25 16:16:33 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-02-26 13:59:16 +1100 |
commit | 781ad038c96195031053291414a12225eb818fd9 (patch) | |
tree | faf68b7deb844b69cb7463d6c7f689ecc7248971 /source4/smbd | |
parent | ad7223b9bd31f71b8af2ae83361d7e054a433cc5 (diff) | |
download | samba-781ad038c96195031053291414a12225eb818fd9.tar.gz samba-781ad038c96195031053291414a12225eb818fd9.tar.bz2 samba-781ad038c96195031053291414a12225eb818fd9.zip |
s4-krb5: propogate errors from a lot more kerberos functions
We need to be able to give sensible error messages when a kerberos
calls fails. This propogates the kerberos error up the stack to the
caller.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/service_named_pipe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/smbd/service_named_pipe.c b/source4/smbd/service_named_pipe.c index c10f43273c..712742be1f 100644 --- a/source4/smbd/service_named_pipe.c +++ b/source4/smbd/service_named_pipe.c @@ -263,6 +263,7 @@ static NTSTATUS named_pipe_recv_auth_request(void *private_data, gss_buffer_desc cred_token; gss_cred_id_t cred_handle; int ret; + const char *error_string; DEBUG(10, ("named_pipe_auth: delegated credentials supplied by client\n")); @@ -292,9 +293,10 @@ static NTSTATUS named_pipe_recv_auth_request(void *private_data, conn->event.ctx, conn->lp_ctx, cred_handle, - CRED_SPECIFIED); + CRED_SPECIFIED, &error_string); if (ret) { rep.status = NT_STATUS_INTERNAL_ERROR; + DEBUG(2, ("Failed to set pipe forwarded creds: %s\n", error_string)); goto reply; } |