From: hal9 Date: Sun, 10 Nov 2002 04:20:02 +0000 (+0000) Subject: Fix typo: supressed -> suppressed X-Git-Tag: v_3_0_1~88 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=cb7154e5298225eedfd742fc50b65b5f7e474e95;p=privoxy.git Fix typo: supressed -> suppressed --- diff --git a/parsers.c b/parsers.c index 2440646e..bfea5714 100644 --- a/parsers.c +++ b/parsers.c @@ -1,4 +1,4 @@ -const char parsers_rcs[] = "$Id: parsers.c,v 1.56.2.1 2002/09/25 14:52:45 oes Exp $"; +const char parsers_rcs[] = "$Id: parsers.c,v 1.56.2.2 2002/09/25 14:59:53 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/Attic/parsers.c,v $ @@ -40,6 +40,9 @@ const char parsers_rcs[] = "$Id: parsers.c,v 1.56.2.1 2002/09/25 14:52:45 oes Ex * * Revisions : * $Log: parsers.c,v $ + * Revision 1.56.2.2 2002/09/25 14:59:53 oes + * Improved cookie logging + * * Revision 1.56.2.1 2002/09/25 14:52:45 oes * Added basic support for OPTIONS and TRACE HTTP methods: * - New parser function client_max_forwards which decrements @@ -1009,7 +1012,7 @@ jb_err client_accept_encoding(struct client_state *csp, char **header) { if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0) { - log_error(LOG_LEVEL_HEADER, "Supressed offer to compress content"); + log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress content"); freez(*header); if (!strcmpic(csp->http->ver, "HTTP/1.1")) @@ -1049,7 +1052,7 @@ jb_err client_te(struct client_state *csp, char **header) if ((csp->action->flags & ACTION_NO_COMPRESSION) != 0) { freez(*header); - log_error(LOG_LEVEL_HEADER, "Supressed offer to compress transfer"); + log_error(LOG_LEVEL_HEADER, "Suppressed offer to compress transfer"); } return JB_ERR_OK;