Commit 1fba7be8 authored by Trond Myklebust's avatar Trond Myklebust

RPCSEC_GSS: Remove an unused parameter.

Signed-off-by: default avatarJ. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@fys.uio.no>
parent 221ef8e7
...@@ -69,7 +69,6 @@ u32 g_verify_token_header( ...@@ -69,7 +69,6 @@ u32 g_verify_token_header(
struct xdr_netobj *mech, struct xdr_netobj *mech,
int *body_size, int *body_size,
unsigned char **buf_in, unsigned char **buf_in,
int tok_type,
int toksize); int toksize);
u32 g_get_mech_oid(struct xdr_netobj *mech, struct xdr_netobj * in_buf); u32 g_get_mech_oid(struct xdr_netobj *mech, struct xdr_netobj * in_buf);
......
...@@ -179,7 +179,7 @@ EXPORT_SYMBOL(g_make_token_header); ...@@ -179,7 +179,7 @@ EXPORT_SYMBOL(g_make_token_header);
*/ */
u32 u32
g_verify_token_header(struct xdr_netobj *mech, int *body_size, g_verify_token_header(struct xdr_netobj *mech, int *body_size,
unsigned char **buf_in, int tok_type, int toksize) unsigned char **buf_in, int toksize)
{ {
unsigned char *buf = *buf_in; unsigned char *buf = *buf_in;
int seqsize; int seqsize;
......
...@@ -96,7 +96,7 @@ krb5_read_token(struct krb5_ctx *ctx, ...@@ -96,7 +96,7 @@ krb5_read_token(struct krb5_ctx *ctx,
dprintk("RPC: krb5_read_token\n"); dprintk("RPC: krb5_read_token\n");
if (g_verify_token_header(&ctx->mech_used, &bodysize, &ptr, toktype, if (g_verify_token_header(&ctx->mech_used, &bodysize, &ptr,
read_token->len)) read_token->len))
goto out; goto out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment