summaryrefslogtreecommitdiffstats
path: root/source/torture/nsstest.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2002-07-15 10:35:28 +0000
committerAndrew Tridgell <tridge@samba.org>2002-07-15 10:35:28 +0000
commit03ac082dcb375b6f3ca3d810a6a6367542bc23ce (patch)
treef13f085fad5de50ebe4b066eb7e2629d55032a2d /source/torture/nsstest.c
parentb8d39651fb90ef170055735412417239a63afc5d (diff)
downloadsamba-03ac082dcb375b6f3ca3d810a6a6367542bc23ce.tar.gz
samba-03ac082dcb375b6f3ca3d810a6a6367542bc23ce.tar.xz
samba-03ac082dcb375b6f3ca3d810a6a6367542bc23ce.zip
updated the 3.0 branch from the head branch - ready for alpha18
Diffstat (limited to 'source/torture/nsstest.c')
-rw-r--r--source/torture/nsstest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/torture/nsstest.c b/source/torture/nsstest.c
index 3aeaa177a13..c9b068aa046 100644
--- a/source/torture/nsstest.c
+++ b/source/torture/nsstest.c
@@ -35,13 +35,13 @@ static void *find_fn(const char *name)
snprintf(s,sizeof(s), "_nss_%s_%s", nss_name, name);
if (!h) {
- h = dlopen(so_path, RTLD_LAZY);
+ h = sys_dlopen(so_path, RTLD_LAZY);
}
if (!h) {
printf("Can't open shared library %s\n", so_path);
exit(1);
}
- res = dlsym(h, s);
+ res = sys_dlsym(h, s);
if (!res) {
printf("Can't find function %s\n", s);
return NULL;