diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-15 09:48:20 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-15 12:14:29 +0200 |
commit | 64fec465c15fea77313643636d82d2c14115f434 (patch) | |
tree | c19360025c1811b3a765bc9e322aa903ebbfc8e0 /source3/utils | |
parent | 07d6c25525ca3b0d3a4e179f1048818f78cccf9d (diff) | |
download | samba-64fec465c15fea77313643636d82d2c14115f434.tar.gz samba-64fec465c15fea77313643636d82d2c14115f434.tar.bz2 samba-64fec465c15fea77313643636d82d2c14115f434.zip |
dbwrap: dbwrap_trans_store_int32->dbwrap_trans_store_int32_bystring
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/dbwrap_tool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/dbwrap_tool.c b/source3/utils/dbwrap_tool.c index 6fb58090e0..72e70690bf 100644 --- a/source3/utils/dbwrap_tool.c +++ b/source3/utils/dbwrap_tool.c @@ -136,7 +136,7 @@ static int dbwrap_tool_store_int32(struct db_context *db, NTSTATUS status; int32_t value = (int32_t)strtol(data, NULL, 10); - status = dbwrap_trans_store_int32(db, keyname, value); + status = dbwrap_trans_store_int32_bystring(db, keyname, value); if (!NT_STATUS_IS_OK(status)) { d_fprintf(stderr, "ERROR: could not store int32 key '%s': %s\n", |