From: Matt Selsky Date: Wed, 28 Feb 2018 06:00:04 +0000 (-0500) Subject: auth/kerberos: Fix typo in error message regarding fetching PAC using Heimdal X-Git-Tag: talloc-2.1.12~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ab4ceffb48e8f82057eea9b2eb2eb09d8bc5ddc;p=thirdparty%2Fsamba.git auth/kerberos: Fix typo in error message regarding fetching PAC using Heimdal BUG: https://bugzilla.samba.org/show_bug.cgi?id=13311 Signed-off-by: Matt Selsky Reviewed-by: Garming Sam Reviewed-by: Andrew Bartlett --- diff --git a/auth/kerberos/gssapi_pac.c b/auth/kerberos/gssapi_pac.c index b695671c95f..e4dad18738b 100644 --- a/auth/kerberos/gssapi_pac.c +++ b/auth/kerberos/gssapi_pac.c @@ -165,7 +165,7 @@ NTSTATUS gssapi_obtain_pac_blob(TALLOC_CTX *mem_ctx, DEBUG(1, ("unable to obtain a PAC against this GSSAPI library. " "GSSAPI secured connections are available only with Heimdal or MIT Kerberos >= 1.8\n")); } else if (gss_maj != 0) { - DEBUG(2, ("obtaining PAC via GSSAPI gss_inqiure_sec_context_by_oid (Heimdal OID) failed: %s\n", + DEBUG(2, ("obtaining PAC via GSSAPI gss_inquire_sec_context_by_oid (Heimdal OID) failed: %s\n", gssapi_error_string(mem_ctx, gss_maj, gss_min, gss_mech_krb5))); } else { if (set == GSS_C_NO_BUFFER_SET) {