From: Jeremy Allison Date: Tue, 12 May 2009 00:29:16 +0000 (-0700) Subject: Ensure documentation matches the tdb_util function usage. X-Git-Tag: tdb-1.1.5~618 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=d0865aeb5dfcb21f7fd525129a59834556c94b27 Ensure documentation matches the tdb_util function usage. Jeremy. --- diff --git a/lib/util/util_tdb.c b/lib/util/util_tdb.c index 2d6012c9f42..e107cbdc4ab 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. ****************************************************************************/