You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2006/03/18 05:30:09 UTC

svn commit: r386807 - /httpd/mod_python/trunk/src/mod_python.c

Author: grahamd
Date: Fri Mar 17 20:30:07 2006
New Revision: 386807

URL: http://svn.apache.org/viewcvs?rev=386807&view=rev
Log:
SSI code specific to Apache 2.0 was incorrectly referencing the Apache 2.1+
macro SSI_CREATE_ERROR_BUCKET. (MODPYTHON-104)

Modified:
    httpd/mod_python/trunk/src/mod_python.c

Modified: httpd/mod_python/trunk/src/mod_python.c
URL: http://svn.apache.org/viewcvs/httpd/mod_python/trunk/src/mod_python.c?rev=386807&r1=386806&r2=386807&view=diff
==============================================================================
--- httpd/mod_python/trunk/src/mod_python.c (original)
+++ httpd/mod_python/trunk/src/mod_python.c Fri Mar 17 20:30:07 2006
@@ -1721,7 +1721,7 @@
         ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, req,
                       "#python used but not allowed in %s", file);
 
-        SSI_CREATE_ERROR_BUCKET(ctx, f, bb);
+        CREATE_ERROR_BUCKET(ctx, tmp_buck, head_ptr, *inserted_head);
         return APR_SUCCESS;
     }