gssapi: RFC 2744 mandates GSS_C_NT_HOSTBASED_SERVICE

Tested on FreeBSD 10.
This commit is contained in:
Franco Fichtner
2014-05-05 21:59:11 +02:00
parent 40cbbe3c9e
commit 8c09ae6e49
3 changed files with 5 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ int zmq::gssapi_mechanism_base_t::acquire_credentials (char * service_name_, gss
name_buf.length = strlen ((char *) name_buf.value) + 1;
maj_stat = gss_import_name (&min_stat, &name_buf,
gss_nt_service_name, &server_name);
GSS_C_NT_HOSTBASED_SERVICE, &server_name);
if (maj_stat != GSS_S_COMPLETE)
return -1;