summaryrefslogtreecommitdiff
path: root/source3/utils/net_registry_check.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-06-14 20:39:27 +0200
committerMichael Adam <obnox@samba.org>2012-06-15 12:14:28 +0200
commit7f19a5ab52ac6ecb380a49ec14072d0fd501f9db (patch)
treee3edb77fbe10165e9b5f0b9fc0876085a1342982 /source3/utils/net_registry_check.c
parent749314fcf99cef4a1a162d622e10b6eb8998938f (diff)
downloadsamba-7f19a5ab52ac6ecb380a49ec14072d0fd501f9db.tar.gz
samba-7f19a5ab52ac6ecb380a49ec14072d0fd501f9db.tar.bz2
samba-7f19a5ab52ac6ecb380a49ec14072d0fd501f9db.zip
dbwrap: dbwrap_fetch_uint32->dbwrap_fetch_uint32_bystring
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils/net_registry_check.c')
-rw-r--r--source3/utils/net_registry_check.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/utils/net_registry_check.c b/source3/utils/net_registry_check.c
index 58cd9f6054..d6c577b89a 100644
--- a/source3/utils/net_registry_check.c
+++ b/source3/utils/net_registry_check.c
@@ -844,7 +844,8 @@ static bool get_version(struct check_ctx *ctx) {
uint32_t info_version = 0;
NTSTATUS status;
- status = dbwrap_fetch_uint32(ctx->idb, "INFO/version", &info_version);
+ status = dbwrap_fetch_uint32_bystring(ctx->idb, "INFO/version",
+ &info_version);
if (!NT_STATUS_IS_OK(status)) {
printf("Warning: no INFO/version found!\n");
/* info_version = guess_version(ctx); */
@@ -923,7 +924,7 @@ dbwrap_store_uint32_verbose(struct db_context *db, const char *key, uint32_t nva
uint32_t oval;
NTSTATUS status;
- status = dbwrap_fetch_uint32(db, key, &oval);
+ status = dbwrap_fetch_uint32_bystring(db, key, &oval);
if (NT_STATUS_IS_OK(status)) {
if (nval == oval) {
goto done;