]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
support '%%' -> '%'
authorwessels <>
Wed, 5 Nov 1997 02:54:46 +0000 (02:54 +0000)
committerwessels <>
Wed, 5 Nov 1997 02:54:46 +0000 (02:54 +0000)
src/errorpage.cc

index 142858517ece8e95f56e4ef377250ed95e19f973..f4edc5e6326a3d6299cbc7feeb0848bb9e9174a0 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: errorpage.cc,v 1.98 1997/10/30 17:49:17 wessels Exp $
+ * $Id: errorpage.cc,v 1.99 1997/11/04 19:54:46 wessels Exp $
  *
  * DEBUG: section 4     Error Generation
  * AUTHOR: Duane Wessels
@@ -312,6 +312,9 @@ errorConvert(char token, ErrorState * err)
        else
            p = "[unknown]";
        break;
+    case '%':
+       p = "%";
+       break;
     default:
        p = "%UNKNOWN%";
        break;