summaryrefslogtreecommitdiff
path: root/selftest
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2014-12-18 20:13:44 +0100
committerKarolin Seeger <kseeger@samba.org>2015-01-11 14:03:10 +0100
commit5636a4839a8f3be3c4bd3bb48010fa6349cdde5f (patch)
tree1ebc8a23b22cedb370c6418de61be87416c8f945 /selftest
parentb3f140d6eb6610d1e8fc40dd862e1052f2ac5337 (diff)
downloadsamba-5636a4839a8f3be3c4bd3bb48010fa6349cdde5f.tar.gz
selftest: use shared/libnss_wrapper_winbind.so.2
This library is always available in make test. nss-wrapper strictly requires the linux nss api. Bug: https://bugzilla.samba.org/show_bug.cgi?id=9299 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (similar to commit 4eb24fa545234be506eb1330ccbbfd5c2b9e0d82)
Diffstat (limited to 'selftest')
-rw-r--r--selftest/target/Samba.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/target/Samba.pm b/selftest/target/Samba.pm
index b0817fd3d2a..217511a8d04 100644
--- a/selftest/target/Samba.pm
+++ b/selftest/target/Samba.pm
@@ -68,7 +68,7 @@ sub nss_wrapper_winbind_so_path($) {
my ($object) = @_;
my $ret = $ENV{NSS_WRAPPER_WINBIND_SO_PATH};
if (not defined($ret)) {
- $ret = bindir_path($object, "default/nsswitch/libnss-winbind.so");
+ $ret = bindir_path($object, "shared/libnss_wrapper_winbind.so.2");
}
return $ret;
}