From: Stefan Metzmacher Date: Mon, 16 Apr 2007 12:00:08 +0000 (+0000) Subject: r22262: fix the build on systems without GSS_C_NT_HOSTBASED_SERVICE X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~703 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=402704b62972c223f3e70bcd6221dc7c3a64f4b9;p=thirdparty%2Fsamba.git r22262: fix the build on systems without GSS_C_NT_HOSTBASED_SERVICE metze --- diff --git a/source/smbd/seal.c b/source/smbd/seal.c index 66ae8419d46..259aff014a9 100644 --- a/source/smbd/seal.c +++ b/source/smbd/seal.c @@ -103,6 +103,9 @@ static NTSTATUS get_srv_gss_creds(const char *service, char *host_princ_s = NULL; NTSTATUS status = NT_STATUS_OK; + gss_OID_desc nt_hostbased_service = + {10, CONST_DISCARD(char *,"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04")}; + asprintf(&host_princ_s, "%s@%s", service, name); if (host_princ_s == NULL) { return NT_STATUS_NO_MEMORY; @@ -113,7 +116,7 @@ static NTSTATUS get_srv_gss_creds(const char *service, ret = gss_import_name(&min, &input_name, - GSS_C_NT_HOSTBASED_SERVICE, + &nt_hostbased_service, &srv_name); if (ret != GSS_S_COMPLETE) {