diff options
| author | Wayne Davison <wayned@samba.org> | 2003-03-21 23:43:50 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2003-03-21 23:43:50 +0000 |
| commit | 18d6b679af4572c7559b3a6e1d4dae0c49236b3b (patch) | |
| tree | f5c3f4fd8f660342bd1f219c34d45aba8eee134a /cleanup.c | |
| parent | dbda5fbf060a0633b91f65bd3b84355ac4dd8967 (diff) | |
| download | android_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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
