marc        97/08/10 00:23:28

  Modified:    src      http_main.c
  Log:
  Add lockfile name to error message printed out when
  USE_FLOCK_SERIALIZED_ACCEPT is defined.
  
  Revision  Changes    Path
  1.149.2.7 +1 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.149.2.6
  retrieving revision 1.149.2.7
  diff -u -r1.149.2.6 -r1.149.2.7
  --- http_main.c       1997/08/04 05:42:45     1.149.2.6
  +++ http_main.c       1997/08/10 07:23:26     1.149.2.7
  @@ -268,7 +268,7 @@
       if (lock_fd == -1)
       {
        perror ("open");
  -     fprintf (stderr, "Cannot open lock file\n");
  +     fprintf (stderr, "Cannot open lock file: %s\n", lock_fname);
        exit (1);
       }
       unlink(lock_fname);
  
  
  

Reply via email to