summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2003-12-04 21:26:50 +0000
committerBradley Nicholes <bnicholes@apache.org>2003-12-04 21:26:50 +0000
commit8175888f1e447c222423d5fb37483ea687266d61 (patch)
treeb9642d530a62defd464260717f05b647d400c910 /server
parent31a652b0a3c6500796337b08f8371065138a01bc (diff)
downloadhttpd-8175888f1e447c222423d5fb37483ea687266d61.tar.gz
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
Diffstat (limited to 'server')
-rw-r--r--server/mpm/netware/mpm_netware.c4
1 files changed, 2 insertions, 2 deletions
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;