From 7435f6760a8aabd3a040945b9764babd541a4c38 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kou=C5=99il?= Date: Fri, 2 May 2008 21:10:15 +0000 Subject: [PATCH] require encryption of transferred data. Fixes #32059. --- org.glite.security.gsoap-plugin/src/glite_gss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.glite.security.gsoap-plugin/src/glite_gss.c b/org.glite.security.gsoap-plugin/src/glite_gss.c index bef5176..e6ff3ff 100644 --- a/org.glite.security.gsoap-plugin/src/glite_gss.c +++ b/org.glite.security.gsoap-plugin/src/glite_gss.c @@ -643,7 +643,7 @@ edg_wll_gss_connect(gss_cred_id_t cred, char const *hostname, int port, /* XXX verify ret_flags match what was requested */ maj_stat = gss_init_sec_context(&min_stat, cred, &context, GSS_C_NO_NAME, GSS_C_NO_OID, - req_flags | GSS_C_MUTUAL_FLAG, + req_flags | GSS_C_MUTUAL_FLAG | GSS_C_CONF_FLAG, 0, GSS_C_NO_CHANNEL_BINDINGS, &input_token, NULL, &output_token, NULL, NULL); -- 1.8.2.3