Make internal function static (and rename).

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18189 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-10-02 07:29:58 +00:00
parent af7f029a28
commit 493bd788d4

View File

@@ -34,8 +34,8 @@
RCSID("$Id$");
OM_uint32
_gss_spnego_supported_mechs(OM_uint32 *minor_status, gss_OID_set *mechs)
static OM_uint32
spnego_supported_mechs(OM_uint32 *minor_status, gss_OID_set *mechs)
{
OM_uint32 ret, junk;
gss_OID_set m;
@@ -484,7 +484,7 @@ OM_uint32 gss_spnego_inquire_names_for_mech (
*name_types = NULL;
ret = _gss_spnego_supported_mechs(minor_status, &mechs);
ret = spnego_supported_mechs(minor_status, &mechs);
if (ret != GSS_S_COMPLETE)
return ret;