diff options
Diffstat (limited to 'src/lib/gssapi/rel_oidset.c')
-rw-r--r-- | src/lib/gssapi/rel_oidset.c | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/lib/gssapi/rel_oidset.c b/src/lib/gssapi/rel_oidset.c new file mode 100644 index 000000000..216d9c9b8 --- /dev/null +++ b/src/lib/gssapi/rel_oidset.c @@ -0,0 +1,32 @@ +/* + * rel_oidset.c --- release a fgss_oid_set + * + * $Source$ + * $Author$ + * $Header$ + * + * Copyright 1991 by the Massachusetts Institute of Technology. + * All Rights Reserved. + * + * For copying and distribution information, please see the file + * <krb5/copyright.h>. + * + */ + +#include <gssapi.h> + +OM_uint32 gss_release_oid_set(minor_status, set) + OM_uint32 *minor_status; + gss_OID_set set; +{ + *minor_status = 0; + + /* + * We don't free the OID parts themselves, since they will all + * be constant structures in this version + */ + free((char *)set); + return(GSS_S_COMPLETE); +} + + |