1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

s3:lib: fix a comment in tdb_unpack()

This commit is contained in:
Michael Adam 2011-08-15 13:34:42 +02:00
parent 32b7411104
commit 0aa85ec43a

View 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)