diff options
Diffstat (limited to 'source3/smbd/seal.c')
-rw-r--r-- | source3/smbd/seal.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/smbd/seal.c b/source3/smbd/seal.c index 66ae8419d46..259aff014a9 100644 --- a/source3/smbd/seal.c +++ b/source3/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) { |