]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix the display of the terminate and restarting console messages
authorBradley Nicholes <bnicholes@apache.org>
Thu, 4 Dec 2003 21:25:41 +0000 (21:25 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Thu, 4 Dec 2003 21:25:41 +0000 (21:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101987 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/netware/mpm_netware.c

index 4a24e417ba93a381883b6146e0dd99560f8c6ce6..3bd41f309a8d6efd4d9f3d8528c40a0a2c8c0cbd 100644 (file)
@@ -983,11 +983,11 @@ int ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s)
 
         /* Wait for all of the threads to terminate before initiating the restart */
         while (worker_thread_count > 0) {
-            printf ("Restart pending. Waiting for %d thread(s) to terminate...",
+            printf ("\rRestart pending. Waiting for %d thread(s) to terminate...",
                     worker_thread_count);
             apr_thread_yield();
         }
-        DBPRINT0 ("restarting...\n");
+        printf ("\nRestarting...\n");
     }
 
     return 0;