diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-08-31 21:04:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:36:17 -0500 |
commit | 222fdd5237c1fd8551c39ce544171df3a5a41831 (patch) | |
tree | 062732388f1155cbe911144abe4a503171a6ca97 /source4/scripting/ejs | |
parent | 84bfcd3c78afefd8d2869c695c116c9df7ee03c4 (diff) | |
download | samba-222fdd5237c1fd8551c39ce544171df3a5a41831.tar.gz samba-222fdd5237c1fd8551c39ce544171df3a5a41831.tar.bz2 samba-222fdd5237c1fd8551c39ce544171df3a5a41831.zip |
r9842: More error checks in the ldb_map modules, extend testsuite
(This used to be commit b7992de4b7d42a55e00509c887a269a07c19627d)
Diffstat (limited to 'source4/scripting/ejs')
-rw-r--r-- | source4/scripting/ejs/smbcalls_ldb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/scripting/ejs/smbcalls_ldb.c b/source4/scripting/ejs/smbcalls_ldb.c index aabd43d1ac..855dd157f7 100644 --- a/source4/scripting/ejs/smbcalls_ldb.c +++ b/source4/scripting/ejs/smbcalls_ldb.c @@ -311,10 +311,10 @@ static int ejs_base64decode(MprVarHandle eid, int argc, struct MprVar **argv) /* - perform an ldb modify + perform an ldb add syntax: - ok = ldb.modify(ldifstring); + ok = ldb.add(ldifstring); */ static int ejs_ldbAdd(MprVarHandle eid, int argc, struct MprVar **argv) { @@ -322,10 +322,10 @@ static int ejs_ldbAdd(MprVarHandle eid, int argc, struct MprVar **argv) } /* - perform an ldb add + perform an ldb modify syntax: - ok = ldb.add(ldifstring); + ok = ldb.modify(ldifstring); */ static int ejs_ldbModify(MprVarHandle eid, int argc, struct MprVar **argv) { |