diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 17:12:07 -0800 | 
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:26:50 -0800 | 
| commit | 02a8a4db3b38ad2dd8bcfcca41694e043e44d282 (patch) | |
| tree | 5c6fb13ee6e7e2ede8b245d35f3602b5efadc661 | |
| parent | 6c7be55ca0c204473d07a030a03c49a7471b4508 (diff) | |
| download | olio-linux-3.10-02a8a4db3b38ad2dd8bcfcca41694e043e44d282.tar.xz olio-linux-3.10-02a8a4db3b38ad2dd8bcfcca41694e043e44d282.zip  | |
[SCTP]: sctp_copy_one_addr() switched to net-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/sctp/bind_addr.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/net/sctp/bind_addr.c b/net/sctp/bind_addr.c index fd0f812f8a4..50f3697625f 100644 --- a/net/sctp/bind_addr.c +++ b/net/sctp/bind_addr.c @@ -77,7 +77,7 @@ int sctp_bind_addr_copy(struct sctp_bind_addr *dest,  	/* Extract the addresses which are relevant for this scope.  */  	list_for_each(pos, &src->address_list) {  		addr = list_entry(pos, struct sctp_sockaddr_entry, list); -		error = sctp_copy_one_addr(dest, &addr->a_h, scope, +		error = sctp_copy_one_addr(dest, &addr->a, scope,  					   gfp, flags);  		if (error < 0)  			goto out; @@ -91,7 +91,7 @@ int sctp_bind_addr_copy(struct sctp_bind_addr *dest,  		list_for_each(pos, &src->address_list) {  			addr = list_entry(pos, struct sctp_sockaddr_entry,  					  list); -			error = sctp_copy_one_addr(dest, &addr->a_h, +			error = sctp_copy_one_addr(dest, &addr->a,  						   SCTP_SCOPE_LINK, gfp,  						   flags);  			if (error < 0) @@ -358,8 +358,6 @@ static int sctp_copy_one_addr(struct sctp_bind_addr *dest,  			      int flags)  {  	int error = 0; -	union sctp_addr tmp; -	flip_to_n(&tmp, addr);  	if (sctp_is_any(addr)) {  		error = sctp_copy_local_addr_list(dest, scope, gfp, flags); @@ -373,7 +371,7 @@ static int sctp_copy_one_addr(struct sctp_bind_addr *dest,  		    (((AF_INET6 == addr->sa.sa_family) &&  		      (flags & SCTP_ADDR6_ALLOWED) &&  		      (flags & SCTP_ADDR6_PEERSUPP)))) -			error = sctp_add_bind_addr(dest, &tmp, 1, gfp); +			error = sctp_add_bind_addr(dest, addr, 1, gfp);  	}  	return error;  |