You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
71a79dc632
-correct call to APR_BRIGADE_SENTINEL (https://trac.macports.org/ticket/15791, https://issues.apache.org/jira/browse/MODPYTHON-249); -add CC variable to dist/Makefile (will not find compiler otherwise) git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@38757 d073be05-634f-4543-b044-5fe20cf6d1d6
12 lines
390 B
Diff
12 lines
390 B
Diff
--- src/connobject.c 2006-12-03 05:36:37.000000000 +0100
|
|
+++ src/connobject.c 2008-07-30 12:30:10.000000000 +0200
|
|
@@ -139,7 +139,7 @@
|
|
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;
|