From: Marc Slemko Date: Sun, 10 Aug 1997 07:23:26 +0000 (+0000) Subject: Add lockfile name to error message printed out when X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2F1.3;p=thirdparty%2Fapache%2Fhttpd.git Add lockfile name to error message printed out when 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 --- diff --git a/APACHE_1_2_X/src/main/http_main.c b/APACHE_1_2_X/src/main/http_main.c index 11193da7a55..28fbc0357f3 100644 --- a/APACHE_1_2_X/src/main/http_main.c +++ b/APACHE_1_2_X/src/main/http_main.c @@ -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);