dect
/
linux-2.6
Archived
13
0
Fork 0

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

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Al Viro 2006-10-10 22:49:27 +01:00 committed by Linus Torvalds
parent 86b95c1213
commit cfbdbab063
1 changed files with 3 additions and 2 deletions

View File

@ -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;