From 749314fcf99cef4a1a162d622e10b6eb8998938f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 14 Jun 2012 20:30:16 +0200 Subject: dbwrap: dbwrap_store_int32->dbwrap_store_int32_bystring Signed-off-by: Michael Adam --- source3/utils/net_idmap.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_idmap.c b/source3/utils/net_idmap.c index 22734eecd8..28f9ed938e 100644 --- a/source3/utils/net_idmap.c +++ b/source3/utils/net_idmap.c @@ -285,7 +285,8 @@ static int net_idmap_restore(struct net_context *c, int argc, const char **argv) break; } } else if (sscanf(line, "USER HWM %lu", &idval) == 1) { - status = dbwrap_store_int32(db, "USER HWM", idval); + status = dbwrap_store_int32_bystring( + db, "USER HWM", idval); if (!NT_STATUS_IS_OK(status)) { d_fprintf(stderr, _("Could not store USER HWM: %s\n"), @@ -293,7 +294,8 @@ static int net_idmap_restore(struct net_context *c, int argc, const char **argv) break; } } else if (sscanf(line, "GROUP HWM %lu", &idval) == 1) { - status = dbwrap_store_int32(db, "GROUP HWM", idval); + status = dbwrap_store_int32_bystring( + db, "GROUP HWM", idval); if (!NT_STATUS_IS_OK(status)) { d_fprintf(stderr, _("Could not store GROUP HWM: %s\n"), -- cgit