svn commit: r309494 - head/net/haproxy-devel/files

Dmitry Sivachenko demon at FreeBSD.org
Tue Dec 25 20:13:09 UTC 2012


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


More information about the svn-ports-all mailing list