socket.c: HAVE_SOCKADDR_LEN misspelt as HAVE_SOCK_SIN_LEN

Jos Backus josb at cncdsl.com
Tue Feb 12 07:01:55 EST 2002


This causes a compile error on Solaris. Fix:

Index: socket.c
===================================================================
RCS file: /cvsroot/rsync/socket.c,v
retrieving revision 1.73
diff -u -r1.73 socket.c
--- socket.c	25 Jan 2002 02:13:05 -0000	1.73
+++ socket.c	11 Feb 2002 20:04:33 -0000
@@ -590,7 +590,7 @@
 	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;

-- 
Jos Backus                 _/  _/_/_/        Santa Clara, CA
                          _/  _/   _/
                         _/  _/_/_/             
                    _/  _/  _/    _/
josb at cncdsl.com     _/_/   _/_/_/            use Std::Disclaimer;




More information about the rsync mailing list