aboutsummaryrefslogtreecommitdiffstats
path: root/cleanup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2003-03-21 23:43:50 +0000
committerWayne Davison <wayned@samba.org>2003-03-21 23:43:50 +0000
commit18d6b679af4572c7559b3a6e1d4dae0c49236b3b (patch)
treef5c3f4fd8f660342bd1f219c34d45aba8eee134a /cleanup.c
parentdbda5fbf060a0633b91f65bd3b84355ac4dd8967 (diff)
downloadandroid_external_rsync-18d6b679af4572c7559b3a6e1d4dae0c49236b3b.tar.gz
android_external_rsync-18d6b679af4572c7559b3a6e1d4dae0c49236b3b.tar.bz2
android_external_rsync-18d6b679af4572c7559b3a6e1d4dae0c49236b3b.zip
The close_all() function was missing its "void" prototype.
Diffstat (limited to 'cleanup.c')
-rw-r--r--cleanup.c2
1 files changed, 1 insertions, 1 deletions
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;