also delete a function definition.. Thanks to the automated build in mod_proxy for picking this one up
Index: apr_file_io.h =================================================================== RCS file: /home/cvspublic/apr/include/apr_file_io.h,v retrieving revision 1.107 diff -u -r1.107 apr_file_io.h --- apr_file_io.h 2001/08/12 05:50:46 1.107 +++ apr_file_io.h 2001/08/12 16:01:59 @@ -113,6 +113,7 @@ #define APR_SET SEEK_SET #define APR_CUR SEEK_CUR #define APR_END SEEK_END +/** @} */
/** should be same as whence type in lseek, POSIX defines this as int */ typedef int apr_seek_where_t; @@ -558,6 +559,12 @@ /** * Get the pool used by the file. * @return apr_pool_t the pool + */ +APR_POOL_DECLARE_ACCESSOR(file); +/** + * Set a file to be inherited by child processes. + * @param file The file to enable inheritance. + * */ APR_DECLARE(void) apr_file_set_inherit(apr_file_t *file);
Ian Holsman wrote:
Index: apr_file_io.h =================================================================== RCS file: /home/cvspublic/apr/include/apr_file_io.h,v retrieving revision 1.107 diff -u -r1.107 apr_file_io.h --- apr_file_io.h 2001/08/12 05:50:46 1.107 +++ apr_file_io.h 2001/08/12 15:34:21 @@ -113,6 +113,7 @@ #define APR_SET SEEK_SET #define APR_CUR SEEK_CUR #define APR_END SEEK_END +/** @} */
/** should be same as whence type in lseek, POSIX defines this as int */ typedef int apr_seek_where_t;
