Just a couple of typos from Will's last patch. Gets us building
again.

Index: include/arch/unix/inherit.h
===================================================================
RCS file: /home/cvspublic/apr/include/arch/unix/inherit.h,v
retrieving revision 1.4
diff -u -r1.4 inherit.h
--- include/arch/unix/inherit.h 2001/07/23 22:19:13     1.4
+++ include/arch/unix/inherit.h 2001/07/23 23:51:20
@@ -64,7 +64,7 @@
 {                                                                   \
     if (!(name->flag & APR_INHERIT)) {                              \
         name->flag |= APR_INHERIT;                                  \
-        apr_pool_cleanup_child_set(name->pool, (void *)name,        \
+        apr_pool_child_cleanup_set(name->pool, (void *)name,        \
                                    cleanup, apr_pool_cleanup_null); \
     }                                                               \
 }
@@ -75,7 +75,7 @@
     if (name->flag & APR_INHERIT) {                                 \
         name->flag &= ~APR_INHERIT;                                 \
         apr_pool_cleanup_kill(name->pool, (void *)name,             \
-                              cleanup, cleanup);                    \
+                              cleanup);                             \
     }                                                               \
 }
 

Reply via email to