From: moonshot Date: Mon, 4 Apr 2011 18:46:29 +0000 (-0400) Subject: Hack: force complete to be true X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot.git;a=commitdiff_plain;h=a761170d231d875d674184ff5854aacd12c845e3 Hack: force complete to be true The version of the mech glue we're using requires complete for gss_userok. That's a bug but it is easier to work around that here than to fix in the mechglue --- diff --git a/mech_eap/util_shib.cpp b/mech_eap/util_shib.cpp index bab284b..ef63912 100644 --- a/mech_eap/util_shib.cpp +++ b/mech_eap/util_shib.cpp @@ -349,7 +349,7 @@ gss_eap_shib_attr_provider::getAttribute(const gss_buffer_t attr, if (authenticated != NULL) *authenticated = m_authenticated; if (complete != NULL) - *complete = false; + *complete = true; if (nvalues > ++i) *more = i;