From: Bradley Nicholes Date: Thu, 4 Dec 2003 21:25:41 +0000 (+0000) Subject: Fix the display of the terminate and restarting console messages X-Git-Tag: 2.0.49~312 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=511a6c05b9b5e22750c59dcfdf9050e70b9f04eb;p=thirdparty%2Fapache%2Fhttpd.git Fix the display of the terminate and restarting console messages git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101987 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/netware/mpm_netware.c b/server/mpm/netware/mpm_netware.c index 4a24e417ba9..3bd41f309a8 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;