summaryrefslogtreecommitdiff
path: root/file_io/win32/filedup.c
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2000-04-28 06:49:50 +0000
committerDoug MacEachern <dougm@apache.org>2000-04-28 06:49:50 +0000
commitcbbf419812c03f4f3e76ac61ea7d14ae6e22e56f (patch)
treeb3a50a0c8fafae0f0e35cdf5dd92efa2f86d1a19 /file_io/win32/filedup.c
parent5258e2cffad128671d2851ed132a7e5c8052a9f5 (diff)
downloadapr-cbbf419812c03f4f3e76ac61ea7d14ae6e22e56f.tar.gz
prefix TRUE,FALSE with APR_
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59975 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32/filedup.c')
-rw-r--r--file_io/win32/filedup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/filedup.c b/file_io/win32/filedup.c
index 012a523dc..6827b8315 100644
--- a/file_io/win32/filedup.c
+++ b/file_io/win32/filedup.c
@@ -74,7 +74,7 @@ ap_status_t ap_dupfile(ap_file_t **new_file, ap_file_t *old_file, ap_pool_t *p)
}
if (!DuplicateHandle(hCurrentProcess, old_file->filehand,
hCurrentProcess,
- &(*new_file)->filehand, 0, FALSE,
+ &(*new_file)->filehand, 0, APR_FALSE,
DUPLICATE_SAME_ACCESS)) {
return GetLastError();
}