]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix wrong Squid version displayed for Squid3 configuration manual
authoramosjeffries <>
Fri, 3 Aug 2007 04:44:39 +0000 (04:44 +0000)
committeramosjeffries <>
Fri, 3 Aug 2007 04:44:39 +0000 (04:44 +0000)
version is hard-coded into the cfg-help script.
Was displaying Squid-2.HEAD as the version for the 3.0 build.

scripts/www/build-cfg-help.pl

index cc474afc55059f60a8f425de10dd02fafc22ec47..94c0916456ba91ba1fb015f1de39104d30932840 100755 (executable)
@@ -10,7 +10,7 @@ use File::Basename;
 #
 # Adrian Chadd <adrian@squid-cache.org>
 #
-# $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";