SCTP: Fix thinko in sctp_copy_laddrs()

Correctly dereference bytes_copied in sctp_copy_laddrs().
I totally must have spaced when doing this.

Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Vlad Yasevich 2007-07-03 12:43:12 -04:00 committed by David S. Miller
parent 7e8767dddf
commit 3663c30660
1 changed files with 1 additions and 1 deletions

View File

@ -4170,7 +4170,7 @@ static int sctp_copy_laddrs(struct sock *sk, __u16 port, void *to,
to += addrlen;
cnt ++;
space_left -= addrlen;
bytes_copied += addrlen;
*bytes_copied += addrlen;
}
return cnt;