diff options
author | Bill Stoddard <stoddard@apache.org> | 2005-02-18 18:05:29 +0100 |
---|---|---|
committer | Bill Stoddard <stoddard@apache.org> | 2005-02-18 18:05:29 +0100 |
commit | 14aff882b634658cc2642ad8d709a1b14e771775 (patch) | |
tree | 5d00fa41b38ec5377a1aa6a2ae47326d83002e66 /server | |
parent | fix compile break with recent rename of real_exit_code to ap_real_exit_code (diff) | |
download | apache2-14aff882b634658cc2642ad8d709a1b14e771775.tar.xz apache2-14aff882b634658cc2642ad8d709a1b14e771775.zip |
Win32: output some useful debug messages when installing the service
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@154322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r-- | server/mpm/winnt/mpm_winnt.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 78605d6449..d4b4f1c308 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1291,6 +1291,8 @@ void winnt_rewrite_args(process_rec *process) exit(rv); } /* Proceed to post_config in order to test the installed configuration */ + fprintf(stderr,"Testing httpd.conf....\n"); + fprintf(stderr,"Errors reported here must be corrected before the service can be started.\n"); } } else if (running_as_service) @@ -1345,6 +1347,8 @@ void winnt_rewrite_args(process_rec *process) exit(rv); } /* Proceed to post_config in order to test the installed configuration */ + fprintf(stderr,"Testing httpd.conf....\n"); + fprintf(stderr,"Errors reported here must be corrected before the service can be started.\n"); } /* Track the args actually entered by the user. |