From 7802d557d4457461f1313bc42546bdeb9dca77ec Mon Sep 17 00:00:00 2001 From: Ken Coar Date: Thu, 26 Jun 1997 12:17:20 +0000 Subject: [PATCH] Fix up the Perl example for nph-script detection (PR#789). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@78371 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/FAQ.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 4183ee6f4ba..6f4ba117325 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -15,7 +15,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.73 $ ($Date: 1997/06/21 18:56:36 $) + $Revision: 1.74 $ ($Date: 1997/06/26 12:17:20 $)

The latest version of this FAQ is always available from the main @@ -1165,7 +1165,7 @@

-
if ($0 =~ m:/*nph-:) { +
if ($0 =~ m:^(.*/)*nph-[^/]*$:) {
     $HTTP_headers =  @@ -1176,9 +1176,9 @@ "Connection: close\015\012";
     - printf ($HTTP_headers); + print $HTTP_headers;
- };
+ }

-- 2.47.2