marc 98/10/19 00:10:17
Modified: src/main http_main.c
Log:
Be more explicit in OS2/Win32 console box message; ie. print
"Apache/x.x.x running..." instead of just "Apache/x.x.x".
Revision Changes Path
1.401 +2 -2 apache-1.3/src/main/http_main.c
Index: http_main.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_main.c,v
retrieving revision 1.400
retrieving revision 1.401
diff -u -r1.400 -r1.401
--- http_main.c 1998/10/12 17:15:25 1.400
+++ http_main.c 1998/10/19 07:10:15 1.401
@@ -5887,11 +5887,11 @@
set_group_privs();
#ifdef OS2
- printf("%s \n", ap_get_server_version());
+ printf("%s running...\n", ap_get_server_version());
#endif
#ifdef WIN32
if (!child) {
- printf("%s \n", ap_get_server_version());
+ printf("%s running...\n", ap_get_server_version());
}
#endif