From d0865aeb5dfcb21f7fd525129a59834556c94b27 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 11 May 2009 17:29:16 -0700 Subject: Ensure documentation matches the tdb_util function usage. Jeremy. --- lib/util/util_tdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/util/util_tdb.c') diff --git a/lib/util/util_tdb.c b/lib/util/util_tdb.c index 2d6012c9f4..e107cbdc4a 100644 --- a/lib/util/util_tdb.c +++ b/lib/util/util_tdb.c @@ -152,7 +152,7 @@ int tdb_store_int32(struct tdb_context *tdb, const char *keystr, int32_t v) } /**************************************************************************** - Fetch a uint32_t value by a arbitrary blob key, return -1 if not found. + Fetch a uint32_t value by a arbitrary blob key, return false if not found. Output is uint32_t in native byte order. ****************************************************************************/ @@ -172,7 +172,7 @@ bool tdb_fetch_uint32_byblob(struct tdb_context *tdb, TDB_DATA key, uint32_t *va } /**************************************************************************** - Fetch a uint32_t value by string key, return -1 if not found. + Fetch a uint32_t value by string key, return false if not found. Output is uint32_t in native byte order. ****************************************************************************/ -- cgit