From: David Dykstra Date: Tue, 28 Jan 2003 03:03:55 +0000 (+0000) Subject: Ack! I had accidentally ifdefed out the kill from the generator to the X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/089a2435f83439a7eb68a539fd99d39b220df120 Ack! I had accidentally ifdefed out the kill from the generator to the receiver process for every platform except Cygwin. --- diff --git a/main.c b/main.c index f61ead43..c2681e61 100644 --- 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; }