diff options
author | Peter Wemm <peter@FreeBSD.org> | 2013-07-28 06:02:40 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2013-07-28 06:02:40 +0000 |
commit | 4705e3668dd7eb98b83cf4c6dc952e4be2709bba (patch) | |
tree | 6a96e078c28ea05d418b4e2722bc03b0b930a78b /contrib/apr/threadproc/unix | |
parent | 363a2c3c1360b816703a78e9d05ae59357f07136 (diff) | |
parent | d08b300705ff687948b1a2b89543e3a452e90c32 (diff) | |
download | src-4705e3668dd7eb98b83cf4c6dc952e4be2709bba.tar.gz src-4705e3668dd7eb98b83cf4c6dc952e4be2709bba.zip |
Update subversion-1.8.0 -> 1.8.1. Update supporting
components: apr-1.4.6 -> 1.4.8 and apr-util-1.4.1 -> 1.5.2.
This is a post point-zero bug-fix / fix-sharp-edges release, including
some workarounds for UTF-8 for people who haven't yet turned on WITH_ICONV.
Notes
Notes:
svn path=/head/; revision=253734
Diffstat (limited to 'contrib/apr/threadproc/unix')
-rw-r--r-- | contrib/apr/threadproc/unix/thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/apr/threadproc/unix/thread.c b/contrib/apr/threadproc/unix/thread.c index 5639ac706873..6d060be55e7e 100644 --- a/contrib/apr/threadproc/unix/thread.c +++ b/contrib/apr/threadproc/unix/thread.c @@ -96,7 +96,7 @@ APR_DECLARE(apr_status_t) apr_threadattr_detach_get(apr_threadattr_t *attr) #else pthread_attr_getdetachstate(&attr->attr, &state); #endif - if (state == 1) + if (state == DETACH_ARG(1)) return APR_DETACH; return APR_NOTDETACH; } |