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

1998-10-12 Thread dgaudet
dgaudet 98/10/12 06:48:27

  Modified:src/main util_script.c
  Log:
  fix something that is obviously wrong by inspection
  
  Revision  ChangesPath
  1.134 +1 -1  apache-1.3/src/main/util_script.c
  
  Index: util_script.c
  ===
  RCS file: /export/home/cvs/apache-1.3/src/main/util_script.c,v
  retrieving revision 1.133
  retrieving revision 1.134
  diff -u -r1.133 -r1.134
  --- util_script.c 1998/10/03 16:49:32 1.133
  +++ util_script.c 1998/10/12 13:48:26 1.134
  @@ -262,7 +262,7 @@
   #endif
   
   ap_table_addn(e, PATH, env_path);
  -ap_table_setn(e, SERVER_SIGNATURE, ap_psignature(, r));
  +ap_table_addn(e, SERVER_SIGNATURE, ap_psignature(, r));
   ap_table_addn(e, SERVER_SOFTWARE, ap_get_server_version());
   ap_table_addn(e, SERVER_NAME, ap_get_server_name(r));
   ap_table_addn(e, SERVER_PORT,
  
  
  


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

1998-10-12 Thread dgaudet
dgaudet 98/10/12 10:15:26

  Modified:src/main http_main.c
  Log:
  correct inconsistency in error message format
  
  Revision  ChangesPath
  1.400 +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.399
  retrieving revision 1.400
  diff -u -r1.399 -r1.400
  --- http_main.c   1998/10/06 15:41:44 1.399
  +++ http_main.c   1998/10/12 17:15:25 1.400
  @@ -1044,14 +1044,14 @@
if (sig == SIGPIPE) {
ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO,
current_conn-server,
  - (client %s) stopped connection before %s completed,
  + [client %s] stopped connection before %s completed,
current_conn-remote_ip,
timeout_name ? timeout_name : request);
}
else {
ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO,
current_conn-server,
  - (client %s) %s timed out,
  + [client %s] %s timed out,
current_conn-remote_ip,
timeout_name ? timeout_name : request);
}