From: amosjeffries <> Date: Fri, 3 Aug 2007 04:44:39 +0000 (+0000) Subject: Fix wrong Squid version displayed for Squid3 configuration manual X-Git-Tag: SQUID_3_0_PRE7~118 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b8ef9ccd0073d2687ea826771df2baceb74821e;p=thirdparty%2Fsquid.git Fix wrong Squid version displayed for Squid3 configuration manual version is hard-coded into the cfg-help script. Was displaying Squid-2.HEAD as the version for the 3.0 build. --- diff --git a/scripts/www/build-cfg-help.pl b/scripts/www/build-cfg-help.pl index cc474afc55..94c0916456 100755 --- a/scripts/www/build-cfg-help.pl +++ b/scripts/www/build-cfg-help.pl @@ -10,7 +10,7 @@ use File::Basename; # # Adrian Chadd # -# $Id: build-cfg-help.pl,v 1.3 2007/06/25 09:58:49 hno Exp $ +# $Id: build-cfg-help.pl,v 1.4 2007/08/02 22:44:39 amosjeffries Exp $ # # The template file is reasonably simple to parse. There's a number of @@ -56,7 +56,7 @@ my (%all_names); my ($comment); my (%defines); -my $version = "2.HEAD"; +my $version = "3.0-PRE6"; my $verbose = ''; my $path = "/tmp"; my $format = "splithtml";