summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-04-28 15:17:00 +0000
committerstoddard <stoddard@13f79535-47bb-0310-9956-ffa450edef68>2000-04-28 15:17:00 +0000
commitba98dd70c73302e12d43f39db1ef1815d3ec348d (patch)
treed194d0a603fa78763863faf99b89a9fd56143aaf
parent39effc71e0ffa1264d44d7531f92fdebe7e48ad5 (diff)
downloadlibapr-ba98dd70c73302e12d43f39db1ef1815d3ec348d.tar.gz
Backout APR_TRUE|FALSE patch on Windows system calls.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59977 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--file_io/win32/pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/pipe.c b/file_io/win32/pipe.c
index f8fb906a8..f18e6aca0 100644
--- a/file_io/win32/pipe.c
+++ b/file_io/win32/pipe.c
@@ -93,7 +93,7 @@ ap_status_t ap_create_pipe(ap_file_t **in, ap_file_t **out, ap_pool_t *cont)
SECURITY_ATTRIBUTES sa;
sa.nLength = sizeof(sa);
- sa.bInheritHandle = APR_TRUE;
+ sa.bInheritHandle = TRUE;
sa.lpSecurityDescriptor = NULL;
(*in) = (ap_file_t *)ap_pcalloc(cont, sizeof(ap_file_t));