From: Daniel KouĊ™il Date: Mon, 6 Aug 2007 14:48:08 +0000 (+0000) Subject: reverted a typo and added typecasting to make the compiler happy X-Git-Tag: glite-yaim-lb_R_4_0_0_2~24 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=c3a54036dcf251f6895510f9d4a1821ecae14b74;p=jra1mw.git reverted a typo and added typecasting to make the compiler happy --- diff --git a/org.glite.security.gss/src/glite_gss.c b/org.glite.security.gss/src/glite_gss.c index 722eca2..79f3d97 100644 --- a/org.glite.security.gss/src/glite_gss.c +++ b/org.glite.security.gss/src/glite_gss.c @@ -974,7 +974,7 @@ edg_wll_gss_close(edg_wll_GssConnection *con, struct timeval *timeout) /* XXX if timeout is NULL use value of 120 secs */ if (con->context != GSS_C_NO_CONTEXT) { - gss_delete_sec_context(&min_stat, con->context, GSS_C_NO_BUFFER); + gss_delete_sec_context(&min_stat, (gss_ctx_id_t *)&con->context, GSS_C_NO_BUFFER); /* XXX send the buffer (if any) to the peer. GSSAPI specs doesn't * recommend sending it, though */