]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add lockfile name to error message printed out when 1.3 1.3
authorMarc Slemko <marc@apache.org>
Sun, 10 Aug 1997 07:23:26 +0000 (07:23 +0000)
committerMarc Slemko <marc@apache.org>
Sun, 10 Aug 1997 07:23:26 +0000 (07:23 +0000)
USE_FLOCK_SERIALIZED_ACCEPT is defined.

Reviewed by:
Submitted by:
Obtained from:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3@78934 13f79535-47bb-0310-9956-ffa450edef68

APACHE_1_2_X/src/main/http_main.c

index 11193da7a556c577b494bddcb96429554161b128..28fbc0357f3a702b4ffa7c9d879349197dfce18f 100644 (file)
@@ -268,7 +268,7 @@ accept_mutex_init(pool *p)
     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);