You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bo...@apache.org on 2007/05/22 01:52:54 UTC

svn commit: r540365 - /apr/apr/branches/0.9.x/file_io/unix/open.c

Author: bojan
Date: Mon May 21 16:52:53 2007
New Revision: 540365

URL: http://svn.apache.org/viewvc?view=rev&rev=540365
Log:
Bring back deprecated but required apr_file_unset_inherit() function.

Modified:
    apr/apr/branches/0.9.x/file_io/unix/open.c

Modified: apr/apr/branches/0.9.x/file_io/unix/open.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/0.9.x/file_io/unix/open.c?view=diff&rev=540365&r1=540364&r2=540365
==============================================================================
--- apr/apr/branches/0.9.x/file_io/unix/open.c (original)
+++ apr/apr/branches/0.9.x/file_io/unix/open.c Mon May 21 16:52:53 2007
@@ -294,5 +294,10 @@
     }
     return APR_SUCCESS;
 }
+/* Deprecated */
+APR_DECLARE(void) apr_file_unset_inherit(apr_file_t *thefile)
+{
+    apr_file_inherit_unset(thefile);
+}
 
 APR_POOL_IMPLEMENT_ACCESSOR(file)