summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gdeschner@redhat.com>2012-08-30 13:22:54 +0200
committerGünther Deschner <gdeschner@redhat.com>2012-08-30 13:22:54 +0200
commita2b54416e7f1861e017f9178e03903b0ce1bd73d (patch)
tree9c55488630933a591a9a089681c11a0ca0e62b1e
parent118965a14418cb209fbb55856d473aeaa6d74db4 (diff)
downloadgss-proxy-master-crypto-calls.tar.gz
gss-proxy-master-crypto-calls.tar.xz
gss-proxy-master-crypto-calls.zip
DO NOT PUSH: use GSS_C_NT_USER_NAME in interposetest.master-crypto-calls
Guenther
-rw-r--r--proxy/tests/interposetest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy/tests/interposetest.c b/proxy/tests/interposetest.c
index 66773ef..f9f45ea 100644
--- a/proxy/tests/interposetest.c
+++ b/proxy/tests/interposetest.c
@@ -198,7 +198,7 @@ void run_client(struct aproc *data)
target_buf.length = strlen(data->target) + 1;
ret_maj = gss_import_name(&ret_min, &target_buf,
- GSS_C_NT_HOSTBASED_SERVICE, &name);
+ GSS_C_NT_USER_NAME, &name);
if (ret_maj) {
goto done;
}
@@ -358,7 +358,7 @@ void run_server(struct aproc *data)
/* import name family functions tests */
ret_maj = gss_import_name(&ret_min, &const_buf,
- GSS_C_NT_HOSTBASED_SERVICE, &target_name);
+ GSS_C_NT_USER_NAME, &target_name);
if (ret_maj) {
DEBUG("gssproxy returned an error: %d\n", ret_maj);
gp_log_failure(GSS_C_NO_OID, ret_maj, ret_min);