summaryrefslogtreecommitdiff
path: root/threadproc/unix
diff options
context:
space:
mode:
authorylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2022-06-17 19:33:59 +0000
committerylavic <ylavic@13f79535-47bb-0310-9956-ffa450edef68>2022-06-17 19:33:59 +0000
commit7ad8f996c922668f584d9a273866f8ae09f4abdf (patch)
tree49c783a9088976ad48b61886a10e4b3eedfe4ec9 /threadproc/unix
parent326bae7f82768f363a52572834d2f3fc9913f509 (diff)
downloadlibapr-7ad8f996c922668f584d9a273866f8ae09f4abdf.tar.gz
apr_thread: Follow up to r1897207 and r1897471: s/AP_HAS_/APR_HAS_/g
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1902019 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/unix')
-rw-r--r--threadproc/unix/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threadproc/unix/proc.c b/threadproc/unix/proc.c
index ad31c814f..ee05e147d 100644
--- a/threadproc/unix/proc.c
+++ b/threadproc/unix/proc.c
@@ -234,7 +234,7 @@ APR_DECLARE(apr_status_t) apr_proc_fork(apr_proc_t *proc, apr_pool_t *pool)
return errno;
}
else if (pid == 0) {
-#if AP_HAS_THREAD_LOCAL
+#if APR_HAS_THREAD_LOCAL
apr_thread_current_after_fork();
#endif
proc->pid = getpid();