]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
change "cached" to "squid" in lots of places
authorwessels <>
Tue, 16 Apr 1996 11:48:20 +0000 (11:48 +0000)
committerwessels <>
Tue, 16 Apr 1996 11:48:20 +0000 (11:48 +0000)
scripts/RunCache.in

index e1cbb373c5e659b36efa13aa7916379d4fafbd3a..9f902223e68b2d014356e2619a60f3718d9213ee 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-#  $Id: RunCache.in,v 1.2 1996/04/16 05:23:05 wessels Exp $
+#  $Id: RunCache.in,v 1.3 1996/04/16 05:48:20 wessels Exp $
 
 PATH=@prefix@/bin:/bin
 export PATH
@@ -12,9 +12,9 @@ fi
 
 failcount=0
 while test 1 ; do
-       echo "Running: cached -s $conf >> cached.out 2>&1"
+       echo "Running: squid -s $conf >> squid.out 2>&1"
        start=`date '+%d%H%M%S'`
-       cached -s $conf >> cached.out 2>&1
+       squid -s $conf >> squid.out 2>&1
        stop=`date '+%d%H%M%S'`
        t=`expr $stop - $start`
        if test 0 -le $t -a $t -lt 5 ; then