From: Wayne Davison Date: Fri, 21 Mar 2003 23:43:50 +0000 (+0000) Subject: The close_all() function was missing its "void" prototype. X-Git-Tag: v2.5.7~192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18d6b679af4572c7559b3a6e1d4dae0c49236b3b;p=thirdparty%2Frsync.git The close_all() function was missing its "void" prototype. --- diff --git a/cleanup.c b/cleanup.c index 2a850832..49d18307 100644 --- 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;