summaryrefslogtreecommitdiffstats
path: root/source/smbd/vfs.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-07-06 18:45:59 +0000
committerJeremy Allison <jra@samba.org>2001-07-06 18:45:59 +0000
commited5a1f70c6d155788b62e9e6e8c5d97a5ca0858d (patch)
treed95e3cad75c2ea13356473618481f312156a206e /source/smbd/vfs.c
parent5059fbbb76ffa24658a878080a36e355df4894f5 (diff)
downloadsamba-ed5a1f70c6d155788b62e9e6e8c5d97a5ca0858d.tar.gz
samba-ed5a1f70c6d155788b62e9e6e8c5d97a5ca0858d.tar.xz
samba-ed5a1f70c6d155788b62e9e6e8c5d97a5ca0858d.zip
Wrapped dlerror() in the same way as the other dlxxx() calls.
Jeremy.
Diffstat (limited to 'source/smbd/vfs.c')
-rw-r--r--source/smbd/vfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/vfs.c b/source/smbd/vfs.c
index 71ebf9b506b..50361564a5e 100644
--- a/source/smbd/vfs.c
+++ b/source/smbd/vfs.c
@@ -117,7 +117,7 @@ static BOOL vfs_init_custom(connection_struct *conn)
/* Open object file */
if ((conn->dl_handle = sys_dlopen(lp_vfsobj(SNUM(conn)),
RTLD_NOW | RTLD_GLOBAL)) == NULL) {
- DEBUG(0, ("Error opening %s: %s\n", lp_vfsobj(SNUM(conn)), dlerror()));
+ DEBUG(0, ("Error opening %s: %s\n", lp_vfsobj(SNUM(conn)), sys_dlerror()));
return False;
}