Skip to content

Commit

Permalink
get a little closer to pre-branch code
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/raeburn-gssapi-cfx@15903 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
raeburn committed Dec 13, 2003
1 parent c9f7a79 commit 083b061
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/gssapi/generic/util_token.c
Expand Up @@ -221,9 +221,8 @@ gss_int32 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize_in,
return(G_BAD_TOK_HEADER);

if ((*buf++ != ((tok_type>>8)&0xff)) ||
(*buf++ != (tok_type&0xff))) {
(*buf++ != (tok_type&0xff)))
return(G_WRONG_TOKID);
}
}
*buf_in = buf;
*body_size = toksize;
Expand Down

0 comments on commit 083b061

Please sign in to comment.