From bdd8b296718e3720b42e57e067e6ae23c7442c8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Kou=C5=99il?= Date: Tue, 25 Jan 2005 11:28:06 +0000 Subject: [PATCH] Require encryption of all messages transfered (not just integrity control) --- org.glite.lb.common/project/version.properties | 2 +- org.glite.lb.common/src/lb_gss.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/org.glite.lb.common/project/version.properties b/org.glite.lb.common/project/version.properties index b6df5d3..b3026cc 100644 --- a/org.glite.lb.common/project/version.properties +++ b/org.glite.lb.common/project/version.properties @@ -1,4 +1,4 @@ #Tue Jan 25 04:11:18 CET 2005 -module.version=1.1.1 +module.version=1.1.2 module.build=153 module.age=1 diff --git a/org.glite.lb.common/src/lb_gss.c b/org.glite.lb.common/src/lb_gss.c index 778b4df..2cffcb1 100644 --- a/org.glite.lb.common/src/lb_gss.c +++ b/org.glite.lb.common/src/lb_gss.c @@ -760,7 +760,7 @@ edg_wll_gss_write(edg_wll_GssConnection *connection, const void *buf, size_t buf input_token.value = (void*)buf; input_token.length = bufsize; - maj_stat = gss_wrap (&min_stat, connection->context, 0, GSS_C_QOP_DEFAULT, + maj_stat = gss_wrap (&min_stat, connection->context, 1, GSS_C_QOP_DEFAULT, &input_token, NULL, &output_token); if (GSS_ERROR(maj_stat)) { if (gss_code) { -- 1.8.2.3