From 15ff718964896e6cad57701d340af891cad84e22 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 3 Jul 2011 17:54:29 +0000 Subject: [PATCH] Fix spelling of LOWER_LENGTH_LIMIT_FOR_COMPRESSION --- cgi.c | 4 ++-- jcc.c | 4 ++-- project.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cgi.c b/cgi.c index 02270caf..b185f491 100644 --- a/cgi.c +++ b/cgi.c @@ -1,4 +1,4 @@ -const char cgi_rcs[] = "$Id: cgi.c,v 1.134 2011/06/25 12:40:55 fabiankeil Exp $"; +const char cgi_rcs[] = "$Id: cgi.c,v 1.135 2011/06/29 18:36:49 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/cgi.c,v $ @@ -1579,7 +1579,7 @@ struct http_response *finish_http_response(const struct client_state *csp, struc #ifdef FEATURE_COMPRESSION if (!err && (csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE) - && (rsp->content_length > LOWER_LENGTH_LIMIT_FOR_COMRPESSION)) + && (rsp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION)) { char *compressed_content; diff --git a/jcc.c b/jcc.c index 56e07d8c..a5cf365f 100644 --- a/jcc.c +++ b/jcc.c @@ -1,4 +1,4 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.352 2011/05/27 11:34:39 fabiankeil Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.353 2011/06/23 14:01:01 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $ @@ -2063,7 +2063,7 @@ static void chat(struct client_state *csp) } #ifdef FEATURE_COMPRESSION else if ((csp->flags & CSP_FLAG_CLIENT_SUPPORTS_DEFLATE) - && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMRPESSION)) + && (csp->content_length > LOWER_LENGTH_LIMIT_FOR_COMPRESSION)) { char *compressed_content = compress_buffer(p, (size_t *)&csp->content_length); if (compressed_content != NULL) diff --git a/project.h b/project.h index dd38cf88..4eb89089 100644 --- a/project.h +++ b/project.h @@ -1,7 +1,7 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED /** Version string. */ -#define PROJECT_H_VERSION "$Id: project.h,v 1.164 2011/04/19 13:00:47 fabiankeil Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.165 2011/06/23 14:01:01 fabiankeil Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/project.h,v $ @@ -191,7 +191,7 @@ typedef int jb_err; * Minimum length which a buffer has to reach before * Privoxy bothers to (re-)compress it. Completely arbitrary. */ -#define LOWER_LENGTH_LIMIT_FOR_COMRPESSION 1024U +#define LOWER_LENGTH_LIMIT_FOR_COMPRESSION 1024U /** * Buffer size for capturing struct hostent data in the -- 2.39.2