summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2010-03-10 11:18:28 +0000
committerjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2010-03-10 11:18:28 +0000
commit9fda2099dc1ef8afc9ac0b446c6b29c58234b66e (patch)
tree8717dd2b2aadcc0a9843be17689f0dc76a9d5674 /file_io
parenta2f35a51a9cce6a92e23eb851d45474bb060dbea (diff)
downloadlibapr-9fda2099dc1ef8afc9ac0b446c6b29c58234b66e.tar.gz
typos? Otherwise it won't compile.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@921306 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/win32/open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/win32/open.c b/file_io/win32/open.c
index c059c5f20..90933fcbf 100644
--- a/file_io/win32/open.c
+++ b/file_io/win32/open.c
@@ -605,8 +605,8 @@ APR_DECLARE(apr_status_t) apr_file_link(const char *from_path,
#endif
#if APR_HAS_ANSI_FS
ELSE_WIN_OS_IS_ANSI {
- if (!CreateHardLinkA(wto_path, wfrom_path))
- return apr_get_os_error()
+ if (!CreateHardLinkA(to_path, from_path))
+ return apr_get_os_error();
}
#endif
return rv;