blob: 216d9c9b8e262be9f28fd486cd75816a861dd34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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);
}
|