summaryrefslogtreecommitdiff
path: root/source3/lib/util_tdb.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2011-08-15 13:34:42 +0200
committerMichael Adam <obnox@samba.org>2011-08-15 17:15:15 +0200
commit0aa85ec43a7973836681b5b79b3778bb64cdec00 (patch)
treed6a0a8f328ceae37ee3953e35edb13be0ff3d93b /source3/lib/util_tdb.c
parent32b74111040f503cf033cdca8d1fbd621543004b (diff)
downloadsamba-0aa85ec43a7973836681b5b79b3778bb64cdec00.tar.gz
samba-0aa85ec43a7973836681b5b79b3778bb64cdec00.tar.bz2
samba-0aa85ec43a7973836681b5b79b3778bb64cdec00.zip
s3:lib: fix a comment in tdb_unpack()
Diffstat (limited to 'source3/lib/util_tdb.c')
-rw-r--r--source3/lib/util_tdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_tdb.c b/source3/lib/util_tdb.c
index fb586f45d2..93842e4126 100644
--- a/source3/lib/util_tdb.c
+++ b/source3/lib/util_tdb.c
@@ -388,7 +388,7 @@ int tdb_unpack(const uint8 *buf, int bufsize, const char *fmt, ...)
goto no_space;
*w = SVAL(buf, 0);
break;
- case 'd': /* signed 32-bit integer (standard int in most systems) */
+ case 'd': /* unsigned 32-bit integer (standard int in most systems) */
len = 4;
d = va_arg(ap, uint32 *);
if (bufsize < len)