summaryrefslogtreecommitdiffstats
path: root/src/lib/gssapi/generic/util_token.c
diff options
context:
space:
mode:
authorPaul Park <pjpark@mit.edu>1995-08-31 17:33:55 +0000
committerPaul Park <pjpark@mit.edu>1995-08-31 17:33:55 +0000
commita631ed069736a1dce90636b63a46dca6763d59b1 (patch)
tree34e438b382afbe8e27df9757b90a1cbd76d6538a /src/lib/gssapi/generic/util_token.c
parentb94bd9276cc146246550181b7f0ebb2be8b992b2 (diff)
downloadkrb5-a631ed069736a1dce90636b63a46dca6763d59b1.tar.gz
krb5-a631ed069736a1dce90636b63a46dca6763d59b1.tar.xz
krb5-a631ed069736a1dce90636b63a46dca6763d59b1.zip
Update to GSSAPI-V2
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6638 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/generic/util_token.c')
-rw-r--r--src/lib/gssapi/generic/util_token.c6
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 eadfad82a..d8e5e91ae 100644
--- a/src/lib/gssapi/generic/util_token.c
+++ b/src/lib/gssapi/generic/util_token.c
@@ -118,7 +118,7 @@ static int der_read_length(buf, bufsize)
/* returns the length of a token, given the mech oid and the body size */
int g_token_size(mech, body_size)
- const_gss_OID mech;
+ gss_OID mech;
unsigned int body_size;
{
/* set body_size to sequence contents size */
@@ -130,7 +130,7 @@ int g_token_size(mech, body_size)
be the right size. buf is advanced past the token header */
void g_make_token_header(mech, body_size, buf, tok_type)
- const_gss_OID mech;
+ gss_OID mech;
int body_size;
unsigned char **buf;
int tok_type;
@@ -149,7 +149,7 @@ void g_make_token_header(mech, body_size, buf, tok_type)
to the number of remaining bytes */
int g_verify_token_header(mech, body_size, buf, tok_type, toksize)
- const_gss_OID mech;
+ gss_OID mech;
int *body_size;
unsigned char **buf;
int tok_type;