From 8fc7df10fb1e3a5fdd6764bc4aea0a661eee7770 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 2 Nov 2007 08:16:32 +0100 Subject: r25789: print out what error happened... metze (This used to be commit cca080f53040c84753050a1a82b8cd93e33ca693) --- source4/kdc/pac-glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/kdc') diff --git a/source4/kdc/pac-glue.c b/source4/kdc/pac-glue.c index b199978e3f..9b2ea15513 100644 --- a/source4/kdc/pac-glue.c +++ b/source4/kdc/pac-glue.c @@ -187,8 +187,8 @@ krb5_error_code samba_kdc_reget_pac(void *priv, krb5_context context, nt_status = ndr_pull_struct_blob(&pac_in, mem_ctx, &logon_info, (ndr_pull_flags_fn_t)ndr_pull_PAC_LOGON_INFO_CTR); if (!NT_STATUS_IS_OK(nt_status) || !logon_info.info) { + DEBUG(0,("can't parse the PAC LOGON_INFO: %s\n", nt_errstr(nt_status))); talloc_free(mem_ctx); - DEBUG(0,("can't parse the PAC LOGON_INFO\n")); return EINVAL; } -- cgit