marc        97/07/11 20:49:57

  Modified:    src       http_main.c
  Log:
  Print name of lock file we can't open.  Already is printed for
  fcntl but flock must have been missed.
  
  Revision  Changes    Path
  1.177     +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.176
  retrieving revision 1.177
  diff -C3 -r1.176 -r1.177
  *** http_main.c       1997/07/10 18:32:47     1.176
  --- http_main.c       1997/07/12 03:49:56     1.177
  ***************
  *** 314,320 ****
        if (lock_fd == -1)
        {
        perror ("open");
  !     fprintf (stderr, "Cannot open lock file\n");
        exit (1);
        }
        unlink(lock_fname);
  --- 314,320 ----
        if (lock_fd == -1)
        {
        perror ("open");
  !     fprintf (stderr, "Cannot open lock file: %s\n", lock_fname);
        exit (1);
        }
        unlink(lock_fname);
  
  
  

Reply via email to