summaryrefslogtreecommitdiffstats
path: root/proxy
diff options
context:
space:
mode:
Diffstat (limited to 'proxy')
-rw-r--r--proxy/src/mechglue/gpp_import_and_canon_name.c4
-rw-r--r--proxy/tests/interposetest.c5
2 files changed, 6 insertions, 3 deletions
diff --git a/proxy/src/mechglue/gpp_import_and_canon_name.c b/proxy/src/mechglue/gpp_import_and_canon_name.c
index b3724bd..0529623 100644
--- a/proxy/src/mechglue/gpp_import_and_canon_name.c
+++ b/proxy/src/mechglue/gpp_import_and_canon_name.c
@@ -149,7 +149,8 @@ done:
/* OM_uint32 gssi_export_name(OM_uint32 *minor_status,
const gss_name_t input_name,
gss_buffer_t exported_name) */
-
+#if 0
+/* disabled until better understood */
OM_uint32 gssi_export_name_composite(OM_uint32 *minor_status,
const gss_name_t input_name,
gss_buffer_t exported_composite_name)
@@ -175,6 +176,7 @@ OM_uint32 gssi_export_name_composite(OM_uint32 *minor_status,
*minor_status = gpp_map_error(min);
return maj;
}
+#endif
OM_uint32 gssi_duplicate_name(OM_uint32 *minor_status,
const gss_name_t input_name,
diff --git a/proxy/tests/interposetest.c b/proxy/tests/interposetest.c
index 1acbd14..f94cbe7 100644
--- a/proxy/tests/interposetest.c
+++ b/proxy/tests/interposetest.c
@@ -526,7 +526,8 @@ void run_server(struct aproc *data)
gp_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
goto done;
}
-
+#if 0
+ /* disabled until gss_export_name_composite server-side is fixed */
gss_release_buffer(&ret_min, &exported_name);
ret_maj = gss_export_name_composite(&ret_min, canon_name,
@@ -536,7 +537,7 @@ void run_server(struct aproc *data)
gp_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
goto done;
}
-
+#endif
ret_maj = gss_display_name(&ret_min, canon_name,
&out_name_buf, &out_name_type);
if (ret_maj) {