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/?a=commitdiff_plain;ds=sidebyside;h=a0ad79d78b1ee654561c8b51b3e4ede90046cb20;p=mech_eap.orig 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/util_shib.cpp b/util_shib.cpp index bab284b..ef63912 100644 --- a/util_shib.cpp +++ b/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;