You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by "Ralf S. Engelschall" <rs...@apache.org> on 1998/08/03 09:34:05 UTC

cvs commit: apache-1.3/src/main http_main.c

rse         98/08/03 00:34:04

  Modified:    src      CHANGES
               src/main http_main.c
  Log:
  Fix suEXEC start message: Has to be of `notice' level to really get
  printed together with the standard startup message because the `notice'
  level is handled special inside ap_log_error() for startup messages.
  
  PR: 2761, 2761, 2765
  
  Revision  Changes    Path
  1.996     +5 -0      apache-1.3/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
  retrieving revision 1.995
  retrieving revision 1.996
  diff -u -r1.995 -r1.996
  --- CHANGES	1998/08/03 07:18:30	1.995
  +++ CHANGES	1998/08/03 07:34:01	1.996
  @@ -1,5 +1,10 @@
   Changes with Apache 1.3.2
   
  +  *) Fix suEXEC start message: Has to be of `notice' level to really get
  +     printed together with the standard startup message because the `notice'
  +     level is handled special inside ap_log_error() for startup messages.
  +     [Ralf S. Engelschall] PR#2761 PR#2761 PR#2765
  +
     *) Add correct `model' MIME types from RFC2077 to mime.types file.
        [Ralf S. Engelschall] PR#2732
   
  
  
  
  1.377     +3 -3      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.376
  retrieving revision 1.377
  diff -u -r1.376 -r1.377
  --- http_main.c	1998/08/02 04:43:17	1.376
  +++ http_main.c	1998/08/03 07:34:03	1.377
  @@ -4139,12 +4139,12 @@
   	ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, server_conf,
   		    "%s configured -- resuming normal operations",
   		    ap_get_server_version());
  -	ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, server_conf,
  -		    "Server built: %s", ap_get_server_built());
   	if (ap_suexec_enabled) {
  -	    ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, server_conf,
  +	    ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, server_conf,
   		         "suEXEC mechanism enabled (wrapper: %s)", SUEXEC_BIN);
   	}
  +	ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, server_conf,
  +		    "Server built: %s", ap_get_server_built());
   	restart_pending = shutdown_pending = 0;
   
   	while (!restart_pending && !shutdown_pending) {