summaryrefslogtreecommitdiff
path: root/socket.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-05-15 00:29:45 +0000
committerAndrew Tridgell <tridge@samba.org>1998-05-15 00:29:45 +0000
commite22de16264d3c5a05b3869692af52b1ccdf3aa80 (patch)
treeb99e7b85730fe0ba83018eb40404a9027a6a410c /socket.c
parentc725d76c5a54acddbf62d7c4cf04a16dd7d17f31 (diff)
downloadrsync-e22de16264d3c5a05b3869692af52b1ccdf3aa80.tar.gz
fixed SIGCLD -> SIGCHLD
fixed formatting of man page (thanks to Karsten)
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index 5ee31f6d..27260a1b 100644
--- a/socket.c
+++ b/socket.c
@@ -120,7 +120,7 @@ void start_accept_loop(int port, int (*fn)(int ))
{
int s;
- signal(SIGCLD, SIG_IGN);
+ signal(SIGCHLD, SIG_IGN);
/* open an incoming socket */
s = open_socket_in(SOCK_STREAM, port);