- print the stats at the right place when uploading in the rsync
[rsync/rsync.git] / main.c
diff --git a/main.c b/main.c
index 0408f61..0a57af6 100644 (file)
--- a/main.c
+++ b/main.c
@@ -226,32 +226,32 @@ static void do_server_sender(int f_in, int f_out, int argc,char *argv[])
 
 static int do_recv(int f_in,int f_out,struct file_list *flist,char *local_name)
 {
-  int pid;
-  int status=0;
-  int recv_pipe[2];
-  extern int preserve_hard_links;
+       int pid;
+       int status=0;
+       int recv_pipe[2];
+       extern int preserve_hard_links;
+       extern int am_daemon;
 
-  if (preserve_hard_links)
-    init_hard_links(flist);
+       if (preserve_hard_links)
+               init_hard_links(flist);
 
-  if (pipe(recv_pipe) < 0) {
-    rprintf(FERROR,"pipe failed in do_recv\n");
-    exit(1);
-  }
+       if (pipe(recv_pipe) < 0) {
+               rprintf(FERROR,"pipe failed in do_recv\n");
+               exit(1);
+       }
   
 
-  if ((pid=do_fork()) == 0) {
-    recv_files(f_in,flist,local_name,recv_pipe[1]);
-    if (verbose > 2)
-      rprintf(FINFO,"receiver read %ld\n",(long)read_total());
-    exit_cleanup(0);
-  }
+       if ((pid=do_fork()) == 0) {
+               recv_files(f_in,flist,local_name,recv_pipe[1]);
+               if (am_daemon) report(-1);
+               exit_cleanup(0);
+       }
 
-  generate_files(f_out,flist,local_name,recv_pipe[0]);
+       generate_files(f_out,flist,local_name,recv_pipe[0]);
 
-  waitpid(pid, &status, 0);
+       waitpid(pid, &status, 0);
 
-  return status;
+       return status;
 }
 
 
@@ -296,7 +296,6 @@ static void do_server_recv(int f_in, int f_out, int argc,char *argv[])
        }
 
        status = do_recv(f_in,f_out,flist,local_name);
-       report(-1);
        exit_cleanup(status);
 }