diff options
author | Joe Perches <joe@perches.com> | 2009-01-22 13:24:49 -0800 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2009-01-28 12:56:02 -0600 |
commit | 44ad532b3277f0cae55bfe0625d3140cf73af450 (patch) | |
tree | 7a5e7a9082c0be3a717e95fca9b890ec82345d6d /fs/dlm | |
parent | 305a47b17c6efcc0e7b67b0bd41e2c12b7af758b (diff) | |
download | linux-3.10-44ad532b3277f0cae55bfe0625d3140cf73af450.tar.gz linux-3.10-44ad532b3277f0cae55bfe0625d3140cf73af450.tar.bz2 linux-3.10-44ad532b3277f0cae55bfe0625d3140cf73af450.zip |
dlm: use ipv6_addr_copy
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r-- | fs/dlm/lowcomms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index 103a5ebd137..bf09262b8b0 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c @@ -53,6 +53,7 @@ #include <linux/mutex.h> #include <linux/sctp.h> #include <net/sctp/user.h> +#include <net/ipv6.h> #include "dlm_internal.h" #include "lowcomms.h" @@ -250,8 +251,7 @@ static int nodeid_to_addr(int nodeid, struct sockaddr *retaddr) } else { struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &addr; struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) retaddr; - memcpy(&ret6->sin6_addr, &in6->sin6_addr, - sizeof(in6->sin6_addr)); + ipv6_addr_copy(&ret6->sin6_addr, &in6->sin6_addr); } return 0; |