diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-10 22:49:27 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-10 15:37:24 -0700 |
commit | cfbdbab0634cafae2c43371396e5443cf4d5d7bc (patch) | |
tree | 8e9056d95242ea5e08a9816ed7a5f2eeb0ac7a2c | |
parent | 86b95c12139785a0f4c17cb7b4cb865e7084cd34 (diff) | |
download | linux-3.10-cfbdbab0634cafae2c43371396e5443cf4d5d7bc.tar.gz linux-3.10-cfbdbab0634cafae2c43371396e5443cf4d5d7bc.tar.bz2 linux-3.10-cfbdbab0634cafae2c43371396e5443cf4d5d7bc.zip |
[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>
-rw-r--r-- | net/sunrpc/auth_gss/svcauth_gss.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sunrpc/auth_gss/svcauth_gss.c b/net/sunrpc/auth_gss/svcauth_gss.c index 447d9aef460..1f0f079ffa6 100644 --- a/net/sunrpc/auth_gss/svcauth_gss.c +++ b/net/sunrpc/auth_gss/svcauth_gss.c @@ -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; |