summaryrefslogtreecommitdiff
path: root/lib/dbwrap/dbwrap_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dbwrap/dbwrap_util.c')
-rw-r--r--lib/dbwrap/dbwrap_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dbwrap/dbwrap_util.c b/lib/dbwrap/dbwrap_util.c
index 2865da0244..a3876064ad 100644
--- a/lib/dbwrap/dbwrap_util.c
+++ b/lib/dbwrap/dbwrap_util.c
@@ -51,8 +51,8 @@ NTSTATUS dbwrap_fetch_int32_bystring(struct db_context *db, const char *keystr,
return NT_STATUS_OK;
}
-NTSTATUS dbwrap_store_int32(struct db_context *db, const char *keystr,
- int32_t v)
+NTSTATUS dbwrap_store_int32_bystring(struct db_context *db, const char *keystr,
+ int32_t v)
{
struct db_record *rec;
int32_t v_store;