diff options
author | Brian Haley <brian.haley@hp.com> | 2009-10-07 13:58:25 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-07 13:58:25 -0700 |
commit | b301e82cf8104cfddbe5452ebe625bab49597c64 (patch) | |
tree | 49d7f8c91833e0658bf4074c0022bbf34790ce47 /net/sunrpc | |
parent | 86c36ce45dc2e2f022562c6481cd778f4cc381a9 (diff) | |
download | linux-3.10-b301e82cf8104cfddbe5452ebe625bab49597c64.tar.gz linux-3.10-b301e82cf8104cfddbe5452ebe625bab49597c64.tar.bz2 linux-3.10-b301e82cf8104cfddbe5452ebe625bab49597c64.zip |
IPv6: use ipv6_addr_set_v4mapped()
Might as well use the ipv6_addr_set_v4mapped() inline we created last
year.
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/svcauth_unix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c index 117f68a8aa4..f4c7ff3a53e 100644 --- a/net/sunrpc/svcauth_unix.c +++ b/net/sunrpc/svcauth_unix.c @@ -686,8 +686,7 @@ svcauth_unix_set_client(struct svc_rqst *rqstp) case AF_INET: sin = svc_addr_in(rqstp); sin6 = &sin6_storage; - ipv6_addr_set(&sin6->sin6_addr, 0, 0, - htonl(0x0000FFFF), sin->sin_addr.s_addr); + ipv6_addr_set_v4mapped(sin->sin_addr.s_addr, &sin6->sin6_addr); break; case AF_INET6: sin6 = svc_addr_in6(rqstp); |