Commit cfbdbab0 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] net/sunrpc/auth_gss/svcauth_gss.c endianness regression

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 86b95c12
......@@ -1146,10 +1146,11 @@ out:
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;
......
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