diff options
author | Jeremy Allison <jra@samba.org> | 2009-05-11 17:29:16 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-05-11 17:29:16 -0700 |
commit | d0865aeb5dfcb21f7fd525129a59834556c94b27 (patch) | |
tree | b815dc993b253d12d800bf62299a9bd3d0791888 /lib/util | |
parent | 0dc1b239eb48ac81797720a8ff23c810321ad5c3 (diff) | |
download | samba-d0865aeb5dfcb21f7fd525129a59834556c94b27.tar.gz samba-d0865aeb5dfcb21f7fd525129a59834556c94b27.tar.bz2 samba-d0865aeb5dfcb21f7fd525129a59834556c94b27.zip |
Ensure documentation matches the tdb_util function usage.
Jeremy.
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/util_tdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. ****************************************************************************/ |