Date: Tue, 25 Dec 2012 20:13:09 +0000 (UTC) From: Dmitry Sivachenko <demon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309494 - head/net/haproxy-devel/files Message-ID: <201212252013.qBPKD988022548@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: demon Date: Tue Dec 25 20:13:09 2012 New Revision: 309494 URL: http://svnweb.freebsd.org/changeset/ports/309494 Log: Fix stats page. Obtained from: project repository. Added: head/net/haproxy-devel/files/patch-src-proto_http.c (contents, props changed) Added: head/net/haproxy-devel/files/patch-src-proto_http.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/haproxy-devel/files/patch-src-proto_http.c Tue Dec 25 20:13:09 2012 (r309494) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212252013.qBPKD988022548>