From: wessels <> Date: Wed, 5 Nov 1997 02:54:46 +0000 (+0000) Subject: support '%%' -> '%' X-Git-Tag: SQUID_3_0_PRE1~4575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e347f8e59949f9f76c056ad516de90790d25e239;p=thirdparty%2Fsquid.git support '%%' -> '%' --- diff --git a/src/errorpage.cc b/src/errorpage.cc index 142858517e..f4edc5e632 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -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;