You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by sf...@apache.org on 2011/11/19 17:15:56 UTC

svn commit: r1204011 - /apr/apr/branches/1.5.x/file_io/win32/dir.c

Author: sf
Date: Sat Nov 19 16:15:55 2011
New Revision: 1204011

URL: http://svn.apache.org/viewvc?rev=1204011&view=rev
Log:
Fix cut'n'paste error

Modified:
    apr/apr/branches/1.5.x/file_io/win32/dir.c

Modified: apr/apr/branches/1.5.x/file_io/win32/dir.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/file_io/win32/dir.c?rev=1204011&r1=1204010&r2=1204011&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/file_io/win32/dir.c (original)
+++ apr/apr/branches/1.5.x/file_io/win32/dir.c Sat Nov 19 16:15:55 2011
@@ -350,7 +350,7 @@ APR_DECLARE(apr_status_t) apr_dir_make_r
      * apr_dir_make being called on existing dir, therefore this check
      * has to come last.
      */
-    if (APR_STATUS_IS_EEXIST(apr_err))
+    if (APR_STATUS_IS_EEXIST(rv))
         return APR_SUCCESS;
 
     return rv;