From 0aa85ec43a7973836681b5b79b3778bb64cdec00 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 15 Aug 2011 13:34:42 +0200 Subject: s3:lib: fix a comment in tdb_unpack() --- source3/lib/util_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') 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) -- cgit