]> sjero.net Git - wget/commitdiff
Back out quieting of background message: need the pid.
authorMicah Cowan <micah@cowan.name>
Sun, 13 Apr 2008 06:20:28 +0000 (23:20 -0700)
committerMicah Cowan <micah@cowan.name>
Sun, 13 Apr 2008 06:20:28 +0000 (23:20 -0700)
src/ChangeLog
src/mswindows.c
src/utils.c

index 2a54ffe77d75d61d21dd1a2696b83b4eadf96051..734765582fcb3480b8e484018fa1dea57f39b9db 100644 (file)
@@ -1,10 +1,3 @@
-2008-04-12  Micah Cowan  <micah@cowan.name>
-
-       * mswindows.c (fake_fork_child): Don't mention that we're
-       backgrounding if --quiet is used.
-
-       * utils.c (fork_to_background): Likewise.
-       
 2008-04-12  Rabin Vincent  <rabin@rab.in>
 
        * mswindows.c (fake_fork_child): Don't create a logfile for
index 9d5141f1c740941018c17fb4f31c1651bc178446..2a1469631299a20c70dd6cd77856c78d2df6fc2b 100644 (file)
@@ -289,8 +289,7 @@ fake_fork (void)
       goto cleanup;
     }
 
-  if (!opt.quiet)
-    printf (_("Continuing in background, pid %lu.\n"), pi.dwProcessId);
+  printf (_("Continuing in background, pid %lu.\n"), pi.dwProcessId);
   if (info->logfile_changed)
     printf (_("Output will be written to `%s'.\n"), info->lfilename);
 
index b5efbaa0c6a9664da8a64810ca1db74979e2aea1..a8c5303862c5274dba500bbcab157ac5b251a641 100644 (file)
@@ -325,8 +325,7 @@ fork_to_background (void)
   else if (pid != 0)
     {
       /* parent, no error */
-      if (!opt.quiet)
-        printf (_("Continuing in background, pid %d.\n"), (int) pid);
+      printf (_("Continuing in background, pid %d.\n"), (int) pid);
       if (logfile_changed)
         printf (_("Output will be written to `%s'.\n"), opt.lfilename);
       exit (0);                 /* #### should we use _exit()? */