Skip to content

Commit

Permalink
[PATCH] net/sunrpc/auth_gss/svcauth_gss.c endianness regression
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Oct 10, 2006
1 parent 86b95c1 commit cfbdbab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions net/sunrpc/auth_gss/svcauth_gss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1146,10 +1146,11 @@ svcauth_gss_accept(struct svc_rqst *rqstp, __be32 *authp)
return ret;
}

u32 *
static __be32 *
svcauth_gss_prepare_to_wrap(struct xdr_buf *resbuf, struct gss_svc_data *gsd)
{
u32 *p, verf_len;
__be32 *p;
u32 verf_len;

p = gsd->verf_start;
gsd->verf_start = NULL;
Expand Down

0 comments on commit cfbdbab

Please sign in to comment.