diff options
author | Michael Adam <obnox@samba.org> | 2011-08-15 13:34:42 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-08-15 17:15:15 +0200 |
commit | 0aa85ec43a7973836681b5b79b3778bb64cdec00 (patch) | |
tree | d6a0a8f328ceae37ee3953e35edb13be0ff3d93b /source3/lib | |
parent | 32b74111040f503cf033cdca8d1fbd621543004b (diff) | |
download | samba-0aa85ec43a7973836681b5b79b3778bb64cdec00.tar.gz samba-0aa85ec43a7973836681b5b79b3778bb64cdec00.tar.bz2 samba-0aa85ec43a7973836681b5b79b3778bb64cdec00.zip |
s3:lib: fix a comment in tdb_unpack()
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_tdb.c | 2 |
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) |