marc        97/07/01 21:09:07

  Modified:    src       http_main.c
  Log:
  Fix calls to ap_snprintf.
  
  Revision  Changes    Path
  1.173     +2 -2      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.172
  retrieving revision 1.173
  diff -C3 -r1.172 -r1.173
  *** http_main.c       1997/06/30 21:09:58     1.172
  --- http_main.c       1997/07/02 04:09:06     1.173
  ***************
  *** 1355,1361 ****
        ap_snprintf
        (
            emsg,
  !         sizeof(emsg) - 1,
            "httpd: caught SIGBUS, attempting to dump core in %s",
            server_root
        );
  --- 1355,1361 ----
        ap_snprintf
        (
            emsg,
  !         sizeof(emsg),
            "httpd: caught SIGBUS, attempting to dump core in %s",
            server_root
        );
  ***************
  *** 1371,1377 ****
        ap_snprintf
        (
            emsg,
  !         sizeof(emsg) - 1,
            "httpd: caught SIGSEGV, attempting to dump core in %s",
            server_root
        );
  --- 1371,1377 ----
        ap_snprintf
        (
            emsg,
  !         sizeof(emsg),
            "httpd: caught SIGSEGV, attempting to dump core in %s",
            server_root
        );
  
  
  

Reply via email to