From: Arkadiusz Miƛkiewicz Date: Sat, 23 Oct 2004 10:59:44 +0000 (+0000) Subject: - up X-Git-Tag: auto/ac/apache-mod_suphp-0_5_2-4~1 X-Git-Url: http://git.pld-linux.org/?a=commitdiff_plain;h=e3618f8741f3bc876f0bc62e789a8b05f1b38394;p=packages%2Fapache-mod_suphp.git - up Changed files: apache-mod_suphp-apr.patch -> 1.3 --- diff --git a/apache-mod_suphp-apr.patch b/apache-mod_suphp-apr.patch index 7c0c5c3..3168135 100644 --- a/apache-mod_suphp-apr.patch +++ b/apache-mod_suphp-apr.patch @@ -1,6 +1,15 @@ diff -urN suphp-0.5.2.org/src/apache2/mod_suphp.c suphp-0.5.2/src/apache2/mod_suphp.c ---- suphp-0.5.2.org/src/apache2/mod_suphp.c 2004-10-20 22:35:50.075483226 +0200 -+++ suphp-0.5.2/src/apache2/mod_suphp.c 2004-10-20 22:38:22.569814891 +0200 +--- suphp-0.5.2.org/src/apache2/mod_suphp.c 2004-10-23 12:58:09.156787800 +0200 ++++ suphp-0.5.2/src/apache2/mod_suphp.c 2004-10-23 12:59:23.461491768 +0200 +@@ -56,7 +56,7 @@ + return -1; + + rv = apr_bucket_read(b, &bucket_data, &bucket_data_len, APR_BLOCK_READ); +- if (!APR_STATUS_IS_SUCCESS(rv) || (bucket_data_len == 0)) ++ if (rv != APR_SUCCESS || (bucket_data_len == 0)) + { + return 0; + } @@ -524,7 +524,7 @@ return rv; }