summaryrefslogtreecommitdiff
path: root/threadproc/netware
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2004-11-27 22:51:47 +0000
committerBradley Nicholes <bnicholes@apache.org>2004-11-27 22:51:47 +0000
commit91fd42d197616b352e12647ef8e702246f578176 (patch)
tree077c7eeef32c11c918d1e27e5373a61d4554e575 /threadproc/netware
parentde1e620a703a9497eb1792d3f25590f2f38c28ed (diff)
downloadapr-91fd42d197616b352e12647ef8e702246f578176.tar.gz
Fixing various compiler errors when compiling against the latest version of LibC SDK
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@106767 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/netware')
-rw-r--r--threadproc/netware/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/netware/proc.c b/threadproc/netware/proc.c
index 52c1495b7..fa23af6b7 100644
--- a/threadproc/netware/proc.c
+++ b/threadproc/netware/proc.c
@@ -390,7 +390,7 @@ APR_DECLARE(apr_status_t) apr_proc_wait(apr_proc_t *proc,
}
else if (WIFSIGNALED(exit_int)) {
*exitwhy = APR_PROC_SIGNAL;
- *exitcode = WTERMSIG(exit_int);
+ *exitcode = WIFTERMSIG(exit_int);
}
else {
/* unexpected condition */