Patch from Jos Backus <josb@cncdsl.com> to use HAVE_SOCKADDR_LEN rather
authorDavid Dykstra <dwd@samba.org>
Wed, 13 Feb 2002 18:45:17 +0000 (18:45 +0000)
committerDavid Dykstra <dwd@samba.org>
Wed, 13 Feb 2002 18:45:17 +0000 (18:45 +0000)
than HAVE_SOCK_SIN_LEN around use of sin_len.  Correct usage was already
in place in clientname.c.

socket.c

index 9ac182d..344c42e 100644 (file)
--- a/socket.c
+++ b/socket.c
@@ -590,7 +590,7 @@ static int socketpair_tcp(int fd[2])
        if ((listener = socket(PF_INET, SOCK_STREAM, 0)) == -1) goto failed;
 
         memset(&sock2, 0, sizeof(sock2));
-#ifdef HAVE_SOCK_SIN_LEN
+#ifdef HAVE_SOCKADDR_LEN
         sock2.sin_len = sizeof(sock2);
 #endif
         sock2.sin_family = PF_INET;