diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-14 20:30:16 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-15 12:14:27 +0200 |
commit | 749314fcf99cef4a1a162d622e10b6eb8998938f (patch) | |
tree | edb8bf82c76fb96ee4a125f147e33273641416fd /source3/torture | |
parent | 737c0a54731803c84f0f29d96dd40ac819aec3e8 (diff) | |
download | samba-749314fcf99cef4a1a162d622e10b6eb8998938f.tar.gz samba-749314fcf99cef4a1a162d622e10b6eb8998938f.tar.bz2 samba-749314fcf99cef4a1a162d622e10b6eb8998938f.zip |
dbwrap: dbwrap_store_int32->dbwrap_store_int32_bystring
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/test_dbwrap_watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/test_dbwrap_watch.c b/source3/torture/test_dbwrap_watch.c index 8011c57951..2a21617fe3 100644 --- a/source3/torture/test_dbwrap_watch.c +++ b/source3/torture/test_dbwrap_watch.c @@ -66,7 +66,7 @@ bool run_dbwrap_watch1(int dummy) } TALLOC_FREE(rec); - status = dbwrap_store_int32(db, keystr, 1); + status = dbwrap_store_int32_bystring(db, keystr, 1); if (!NT_STATUS_IS_OK(status)) { fprintf(stderr, "dbwrap_store_int32 failed: %s\n", nt_errstr(status)); |