Magellan Linux

Contents of /trunk/apache2-mod_python/patches/apache2-mod_python-3.3.1-apr_brigade_sentinel.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 942 - (show annotations) (download)
Tue Dec 1 08:23:40 2009 UTC (14 years, 5 months ago) by niro
File size: 520 byte(s)
several fixes

1 diff -burN mod_python-3.3.1.original/src/connobject.c mod_python-3.3.1/src/connobject.c
2 --- mod_python-3.3.1.original/src/connobject.c 2006-12-03 05:36:37.000000000 +0100
3 +++ mod_python-3.3.1/src/connobject.c 2008-07-15 01:05:01.000000000 +0200
4 @@ -139,7 +139,7 @@
5 bytes_read = 0;
6
7 while ((bytes_read < len || len == 0) &&
8 - !(b == APR_BRIGADE_SENTINEL(b) ||
9 + !(b == APR_BRIGADE_SENTINEL(bb) ||
10 APR_BUCKET_IS_EOS(b) || APR_BUCKET_IS_FLUSH(b))) {
11
12 const char *data;