jorton 2002/12/11 11:37:08
Modified: dso/unix dso.c
Log:
Don't pass BIND_VERBOSE to shl_load(), else it dumps errors to stderr
by default.
Revision Changes Path
1.57 +1 -1 apr/dso/unix/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- dso.c 13 Sep 2002 04:59:52 -0000 1.56
+++ dso.c 11 Dec 2002 19:37:08 -0000 1.57
@@ -119,7 +119,7 @@
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;