diff options
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) |