summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsf <sf@13f79535-47bb-0310-9956-ffa450edef68>2011-11-19 16:16:30 +0000
committersf <sf@13f79535-47bb-0310-9956-ffa450edef68>2011-11-19 16:16:30 +0000
commit93207e5814de79069865def5e5701b40281dcd9a (patch)
tree43381a1d10a1d3d50fee5036abe594eede7543f4
parentc536bdb930e2a676d82ee13f670afbea4a5925a7 (diff)
downloadlibapr-93207e5814de79069865def5e5701b40281dcd9a.tar.gz
Fix cut'n'paste error
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@1204012 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/win32/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/dir.c b/file_io/win32/dir.c
index 18420c141..f6eeb8725 100644
--- a/file_io/win32/dir.c
+++ b/file_io/win32/dir.c
@@ -350,7 +350,7 @@ APR_DECLARE(apr_status_t) apr_dir_make_recursive(const char *path,
* 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;