summaryrefslogtreecommitdiff
path: root/source3/torture
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-11-01 03:49:49 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-11-01 03:49:49 +0100
commit7b186c48d365ae8eda81ae9a0af100d2214bee32 (patch)
tree9a49d17f6529a218f4d8e7879714e4dae2c001c3 /source3/torture
parent6a2caa34b24c2225dba9da011eaa5cc3eb8752be (diff)
downloadsamba-7b186c48d365ae8eda81ae9a0af100d2214bee32.tar.gz
samba-7b186c48d365ae8eda81ae9a0af100d2214bee32.tar.bz2
samba-7b186c48d365ae8eda81ae9a0af100d2214bee32.zip
Remove sys_dl*() - stubs are already provided by libreplace.
Diffstat (limited to 'source3/torture')
-rw-r--r--source3/torture/nsstest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/nsstest.c b/source3/torture/nsstest.c
index 6bd0efe1af..352b3fa33c 100644
--- a/source3/torture/nsstest.c
+++ b/source3/torture/nsstest.c
@@ -37,13 +37,13 @@ static void *find_fn(const char *name)
}
if (!h) {
- h = sys_dlopen(so_path, RTLD_LAZY);
+ h = dlopen(so_path, RTLD_LAZY);
}
if (!h) {
printf("Can't open shared library %s\n", so_path);
exit(1);
}
- res = sys_dlsym(h, s);
+ res = dlsym(h, s);
if (!res) {
printf("Can't find function %s\n", s);
total_errors++;