1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-21 04:30:37 -04:00
ports/www/mod_python33/files/patch-src__connobject.c
Olli Hauer 7abe94a17f - limit python version to 2.7
- re- generate mod_python33 patch files

PR:		212446
Reported by:	George Michaelson
2016-09-17 18:13:34 +00:00

11 lines
388 B
C

--- src/connobject.c.orig 2006-12-03 04:36:37 UTC
+++ src/connobject.c
@@ -139,7 +139,7 @@ static PyObject * _conn_read(conn_rec *c
bytes_read = 0;
while ((bytes_read < len || len == 0) &&
- !(b == APR_BRIGADE_SENTINEL(b) ||
+ !(b == APR_BRIGADE_SENTINEL(bb) ||
APR_BUCKET_IS_EOS(b) || APR_BUCKET_IS_FLUSH(b))) {
const char *data;