From: Bradley Nicholes Date: Thu, 4 Dec 2003 21:26:50 +0000 (+0000) Subject: Fix the display of the terminate and restarting console messages X-Git-Tag: pre_ajp_proxy~956 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8175888f1e447c222423d5fb37483ea687266d61;p=apache Fix the display of the terminate and restarting console messages git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101988 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/netware/mpm_netware.c b/server/mpm/netware/mpm_netware.c index 148d15f650..4178b3a5b0 100644 --- a/server/mpm/netware/mpm_netware.c +++ b/server/mpm/netware/mpm_netware.c @@ -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;