summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2002-12-11 19:37:08 +0000
committerJoe Orton <jorton@apache.org>2002-12-11 19:37:08 +0000
commit88c51518b01db93645bfa679b96fad7199ac7b2d (patch)
treedc310542a06e4b6b97e78a1a114777286c2a39fb /dso
parent407da9ec115957162b3bf0655521bbfee06fe4d5 (diff)
downloadapr-88c51518b01db93645bfa679b96fad7199ac7b2d.tar.gz
Don't pass BIND_VERBOSE to shl_load(), else it dumps errors to stderr
by default. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64143 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/unix/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index 9168920fd..1246d9ddb 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -119,7 +119,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
const char *path, apr_pool_t *pool)
{
#if defined(DSO_USE_SHL)
- shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_VERBOSE|BIND_NOSTART, 0L);
+ shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_NOSTART, 0L);
#elif defined(DSO_USE_DYLD)
NSObjectFileImage image;