diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2012-12-25 20:13:09 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2012-12-25 20:13:09 +0000 |
commit | f51df0f37afc2a870a1799748028797c7a0ea063 (patch) | |
tree | c0a35886cb8ee79262d635aaa91160f5d003c63c /net/haproxy-devel | |
parent | 2f7ca3f15c3cb9c4a0e41d5f1757e6ccd4646448 (diff) | |
download | ports-f51df0f37afc2a870a1799748028797c7a0ea063.tar.gz ports-f51df0f37afc2a870a1799748028797c7a0ea063.zip |
Notes
Diffstat (limited to 'net/haproxy-devel')
-rw-r--r-- | net/haproxy-devel/files/patch-src-proto_http.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/haproxy-devel/files/patch-src-proto_http.c b/net/haproxy-devel/files/patch-src-proto_http.c new file mode 100644 index 000000000000..7d9f3e33a136 --- /dev/null +++ b/net/haproxy-devel/files/patch-src-proto_http.c @@ -0,0 +1,16 @@ +--- src/proto_http.c.orig 2012-12-24 19:48:14.000000000 +0400 ++++ src/proto_http.c 2012-12-26 00:10:46.000000000 +0400 +@@ -3113,11 +3113,11 @@ + trash.str[trash.len++] = ' '; + trash.len += build_logline(s, trash.str + trash.len, trash.size - trash.len, &rule->arg.hdr_add.fmt); + http_header_add_tail2(&txn->req, &txn->hdr_idx, trash.str, trash.len); +- break; ++ return rule; + } + } + } +- return rule; ++ return NULL; + } + + /* This stream analyser runs all HTTP request processing which is common to |