diff options
Diffstat (limited to 'src/lib/gssapi/generic/util_token.c')
-rw-r--r-- | src/lib/gssapi/generic/util_token.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/gssapi/generic/util_token.c b/src/lib/gssapi/generic/util_token.c index c5067fde95..c378198943 100644 --- a/src/lib/gssapi/generic/util_token.c +++ b/src/lib/gssapi/generic/util_token.c @@ -111,7 +111,7 @@ static int der_read_length(buf, bufsize) /* returns the length of a token, given the mech oid and the body size */ -int INTERFACE g_token_size(mech, body_size) +int g_token_size(mech, body_size) const_gss_OID mech; unsigned int body_size; { @@ -123,7 +123,7 @@ int INTERFACE g_token_size(mech, body_size) /* fills in a buffer with the token header. The buffer is assumed to be the right size. buf is advanced past the token header */ -void INTERFACE g_make_token_header(mech, body_size, buf, tok_type) +void g_make_token_header(mech, body_size, buf, tok_type) const_gss_OID mech; int body_size; unsigned char **buf; @@ -142,7 +142,7 @@ void INTERFACE g_make_token_header(mech, body_size, buf, tok_type) leaving buf advanced past the token header, and setting body_size to the number of remaining bytes */ -int INTERFACE g_verify_token_header(mech, body_size, buf, tok_type, toksize) +int g_verify_token_header(mech, body_size, buf, tok_type, toksize) const_gss_OID mech; int *body_size; unsigned char **buf; |