]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Ack! I had accidentally ifdefed out the kill from the generator to the
authorDavid Dykstra <dwd@samba.org>
Tue, 28 Jan 2003 03:03:55 +0000 (03:03 +0000)
committerDavid Dykstra <dwd@samba.org>
Tue, 28 Jan 2003 03:03:55 +0000 (03:03 +0000)
receiver process for every platform except Cygwin.

main.c

diff --git a/main.c b/main.c
index f61ead4368a0077dca0d2aea3158633a7d724409..c2681e616a984db1acf91c064e846d7bd0f5d796 100644 (file)
--- a/main.c
+++ b/main.c
@@ -465,8 +465,8 @@ static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
 #ifdef DELAY_BEFORE_SIGNALING_RECEIVER
        /* workaround for cygwin hangs; wait to make sure child is ready */
        msleep(100); 
-       kill(pid, SIGUSR2);
 #endif
+       kill(pid, SIGUSR2);
        wait_process(pid, &status);
        return status;
 }