]> git.pld-linux.org Git - packages/apache-mod_ntlm.git/commitdiff
- apache 2.2+ patch, apr_pool_sub_make (no longer exists)
authorjezik <jezik@pld-linux.org>
Wed, 14 Nov 2007 17:37:13 +0000 (17:37 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    apache-mod_ntlm-apr_pool.patch -> 1.1

apache-mod_ntlm-apr_pool.patch [new file with mode: 0644]

diff --git a/apache-mod_ntlm-apr_pool.patch b/apache-mod_ntlm-apr_pool.patch
new file mode 100644 (file)
index 0000000..adac26b
--- /dev/null
@@ -0,0 +1,17 @@
+--- mod_ntlm.c.org     2003-02-23 16:58:02.000000000 +0100
++++ mod_ntlm.c 2007-11-09 14:11:58.000000000 +0100
+@@ -587,7 +587,13 @@
+         return NULL;
+     }
+-    apr_pool_sub_make(&sp,p,NULL);
++     /*
++      * apr_pool_sub_make(&sp,p,NULL);
++      *
++      * This function call is not longer available with apache 2.2
++      * Try replacing it with apr_pool_create_ex()
++      */
++    apr_pool_create_ex(&sp,p,NULL,NULL);
+     while (!(ap_cfg_getline(l, MAX_STRING_LEN, f))) {
+         if ((l[0] == '#') || (!l[0]))
This page took 0.034445 seconds and 4 git commands to generate.