The close_all() function was missing its "void" prototype.
authorWayne Davison <wayned@samba.org>
Fri, 21 Mar 2003 23:43:50 +0000 (23:43 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 21 Mar 2003 23:43:50 +0000 (23:43 +0000)
cleanup.c

index 2a85083..49d1830 100644 (file)
--- a/cleanup.c
+++ b/cleanup.c
@@ -26,7 +26,7 @@
  * shutdown() of socket connections.  This eliminates the abortive
  * TCP RST sent by a Winsock-based system when the close() occurs.
  **/
-void close_all()
+void close_all(void)
 {
 #ifdef SHUTDOWN_ALL_SOCKETS
        int max_fd;