]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
listen(..., 1) as 0 doesn't work on Tru64!
authorDaniel Stenberg <daniel@haxx.se>
Wed, 27 Apr 2005 12:28:04 +0000 (12:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 27 Apr 2005 12:28:04 +0000 (12:28 +0000)
tests/server/sockfilt.c

index 3244549c8d1c8afc9b84bec852024e9e7c09f4e0..a174f902e2ce76ccb31efe1ff246b3307dc4eaf3 100644 (file)
@@ -644,7 +644,7 @@ int main(int argc, char *argv[])
     }
 
     /* start accepting connections */
-    listen(sock, 0);
+    listen(sock, 1);
 
   }