diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-14 20:26:28 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-15 12:14:27 +0200 |
commit | 737c0a54731803c84f0f29d96dd40ac819aec3e8 (patch) | |
tree | de2309feed737fe96ee85cb1f67a946ef792d35d /lib/dbwrap/dbwrap_util.c | |
parent | 9afd4be688429d7bb344087cb3eda876f18e19f9 (diff) | |
download | samba-737c0a54731803c84f0f29d96dd40ac819aec3e8.tar.gz samba-737c0a54731803c84f0f29d96dd40ac819aec3e8.tar.xz samba-737c0a54731803c84f0f29d96dd40ac819aec3e8.zip |
dbwrap: dbwrap_fetch_int32->dbwrap_fetch_int32_bystring
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/dbwrap/dbwrap_util.c')
-rw-r--r-- | lib/dbwrap/dbwrap_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dbwrap/dbwrap_util.c b/lib/dbwrap/dbwrap_util.c index 314a55208c..2865da0244 100644 --- a/lib/dbwrap/dbwrap_util.c +++ b/lib/dbwrap/dbwrap_util.c @@ -26,8 +26,8 @@ #include "dbwrap.h" #include "lib/util/util_tdb.h" -NTSTATUS dbwrap_fetch_int32(struct db_context *db, const char *keystr, - int32_t *result) +NTSTATUS dbwrap_fetch_int32_bystring(struct db_context *db, const char *keystr, + int32_t *result) { TDB_DATA dbuf; NTSTATUS status; |