diff options
author | Jeremy Allison <jra@samba.org> | 2007-11-02 12:56:21 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-11-02 12:56:21 -0700 |
commit | 6665739a1634f72d0d80fb41e29133f7bc3f8f7b (patch) | |
tree | f7baf3144f2b8ddec48a26161252cc9f8657278e | |
parent | 329365684bca99bf9020b6638a1357df65c1d938 (diff) | |
download | samba-6665739a1634f72d0d80fb41e29133f7bc3f8f7b.tar.gz samba-6665739a1634f72d0d80fb41e29133f7bc3f8f7b.tar.bz2 samba-6665739a1634f72d0d80fb41e29133f7bc3f8f7b.zip |
Fix typos in calc_sa_size, noticed by jim.brown@miami.edu
Jeremy.
(This used to be commit 6b7ccd3efb05291f3b8779845a3842a09bb9aa07)
-rw-r--r-- | source3/lib/interfaces.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/interfaces.c b/source3/lib/interfaces.c index 01481c50e9..1174bf8c90 100644 --- a/source3/lib/interfaces.c +++ b/source3/lib/interfaces.c @@ -701,9 +701,10 @@ static socklen_t calc_sa_size(struct sockaddr *psa) socklen_t sl = sizeof(struct sockaddr_in); #if defined(HAVE_IPV6) if (psa->sa_family == AF_INET6) { - salen = sizeof(struct sockaddr_in6); + sl = sizeof(struct sockaddr_in6); } #endif + return sl; } int main() |