diff options
| author | Joe Perches <joe@perches.com> | 2009-01-22 16:24:49 -0500 |
|---|---|---|
| committer | David Teigland <teigland@redhat.com> | 2009-01-28 13:56:02 -0500 |
| commit | 44ad532b3277f0cae55bfe0625d3140cf73af450 (patch) | |
| tree | 7a5e7a9082c0be3a717e95fca9b890ec82345d6d /fs | |
| parent | 305a47b17c6efcc0e7b67b0bd41e2c12b7af758b (diff) | |
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')
| -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 103a5ebd1371..bf09262b8b01 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c | |||
| @@ -53,6 +53,7 @@ | |||
| 53 | #include <linux/mutex.h> | 53 | #include <linux/mutex.h> |
| 54 | #include <linux/sctp.h> | 54 | #include <linux/sctp.h> |
| 55 | #include <net/sctp/user.h> | 55 | #include <net/sctp/user.h> |
| 56 | #include <net/ipv6.h> | ||
| 56 | 57 | ||
| 57 | #include "dlm_internal.h" | 58 | #include "dlm_internal.h" |
| 58 | #include "lowcomms.h" | 59 | #include "lowcomms.h" |
| @@ -250,8 +251,7 @@ static int nodeid_to_addr(int nodeid, struct sockaddr *retaddr) | |||
| 250 | } else { | 251 | } else { |
| 251 | struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &addr; | 252 | struct sockaddr_in6 *in6 = (struct sockaddr_in6 *) &addr; |
| 252 | struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) retaddr; | 253 | struct sockaddr_in6 *ret6 = (struct sockaddr_in6 *) retaddr; |
| 253 | memcpy(&ret6->sin6_addr, &in6->sin6_addr, | 254 | ipv6_addr_copy(&ret6->sin6_addr, &in6->sin6_addr); |
| 254 | sizeof(in6->sin6_addr)); | ||
| 255 | } | 255 | } |
| 256 | 256 | ||
| 257 | return 0; | 257 | return 0; |
