s3:lib: fix a comment in tdb_unpack()
authorMichael Adam <obnox@samba.org>
Mon, 15 Aug 2011 11:34:42 +0000 (13:34 +0200)
committerMichael Adam <obnox@samba.org>
Mon, 15 Aug 2011 15:15:15 +0000 (17:15 +0200)
source3/lib/util_tdb.c

index fb586f45d2f647ee13275e6a4710c32557c3cbdd..93842e41266e9e33cb918a03b673e4a16b506cc1 100644 (file)
@@ -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)