From: Wayne Davison Date: Sat, 13 Nov 2004 22:32:34 +0000 (+0000) Subject: Tweaked the error code for a pipe() failure. X-Git-Tag: v2.6.4pre1~512 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8f2f8572fd29a10a077e7f0840cfe0d9170ab02;p=thirdparty%2Frsync.git Tweaked the error code for a pipe() failure. --- diff --git a/main.c b/main.c index 2baac16a..267cbd7f 100644 --- a/main.c +++ b/main.c @@ -481,13 +481,13 @@ static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name) if (fd_pair(error_pipe) < 0 || (need_name_pipe && fd_pair(name_pipe) < 0)) { rsyserr(FERROR, errno, "pipe failed in do_recv"); - exit_cleanup(RERR_SOCKETIO); + exit_cleanup(RERR_IPC); } io_flush(NORMAL_FLUSH); if ((pid = do_fork()) == -1) { - rsyserr(FERROR, errno, "fork failed in do_recv()"); + rsyserr(FERROR, errno, "fork failed in do_recv"); exit_cleanup(RERR_IPC); }