summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2010-03-10 07:56:55 +0000
committerjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>2010-03-10 07:56:55 +0000
commitaeab9865d9037c7cedbea9d34826b9182803e675 (patch)
tree42e9f8e02d388418ac35f59e9b140f163b99730a
parent387adbfc6c02bbcfb3f63c8680c2983d97c4e192 (diff)
downloadlibapr-aeab9865d9037c7cedbea9d34826b9182803e675.tar.gz
typos? Otherwise it won't compile.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@921241 13f79535-47bb-0310-9956-ffa450edef68
-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;