summaryrefslogtreecommitdiffstats
path: root/modules/http
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2008-01-07 10:26:53 +0100
committerRuediger Pluem <rpluem@apache.org>2008-01-07 10:26:53 +0100
commitbf4f6247c72b5a3388c4593d45fc63bcd60f2e89 (patch)
tree84a154bed5e8e72e5bb3777f9da702433914a86d /modules/http
parent* Optimize solution from r609394 and remove chunk-extensions restriction that (diff)
downloadapache2-bf4f6247c72b5a3388c4593d45fc63bcd60f2e89.tar.xz
apache2-bf4f6247c72b5a3388c4593d45fc63bcd60f2e89.zip
* Optimize alignment.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@609540 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r--modules/http/http_filters.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c
index bdc45d76ed..15448ed2b0 100644
--- a/modules/http/http_filters.c
+++ b/modules/http/http_filters.c
@@ -70,7 +70,7 @@ typedef struct http_filter_ctx {
BODY_CHUNK_PART
} state;
int eos_sent;
- char chunk_ln[30];
+ char chunk_ln[32];
char *pos;
apr_off_t linesize;
} http_ctx_t;