summaryrefslogtreecommitdiff
path: root/testprogs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-01 18:55:51 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:36:21 -0500
commit4f4dae05f03c76b81cbc71ee80f7f1a34644936f (patch)
treeeb7c525a2bbef9b86bb785985788fdd4ef901db7 /testprogs
parentca6c0af86f3bbefbc29c4bf4815da963ca857cef (diff)
downloadsamba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.tar.gz
samba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.tar.bz2
samba-4f4dae05f03c76b81cbc71ee80f7f1a34644936f.zip
r9912: Fix another bug in ldb_map.
(This used to be commit 4c3b37d660e798764e35a31221f4939ab6f36948)
Diffstat (limited to 'testprogs')
-rwxr-xr-xtestprogs/ejs/samba3sam2
1 files changed, 2 insertions, 0 deletions
diff --git a/testprogs/ejs/samba3sam b/testprogs/ejs/samba3sam
index 6ca7592650..6ea8da3492 100755
--- a/testprogs/ejs/samba3sam
+++ b/testprogs/ejs/samba3sam
@@ -128,6 +128,7 @@ assert(msg[0].cn == "Niemand");
println("Checking for data in destination database");
msg = s3.search("(cn=Niemand)");
assert(msg.length >= 1);
+printVars(msg);
assert(msg[0].sambaSID == "S-1-5-21-4231626423-2410014848-2360679739-2001");
assert(msg[0].displayName == "Niemand");
@@ -189,3 +190,4 @@ println("Checking whether record is gone...");
msg = s4.search("(cn=Niemand)");
assert(msg.length == 0);
+return 0;