1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s3:registry: improve log message in regdb_unpack_values()

Signed-off-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Michael Adam 2012-03-30 15:35:14 +02:00 committed by Andreas Schneider
parent 6f67f5d5b7
commit 44159330db

View File

@ -1804,7 +1804,8 @@ static int regdb_unpack_values(struct regval_ctr *values, uint8 *buf, int buflen
(uint8_t *)data_p, size); (uint8_t *)data_p, size);
SAFE_FREE(data_p); /* 'B' option to tdb_unpack does a malloc() */ SAFE_FREE(data_p); /* 'B' option to tdb_unpack does a malloc() */
DEBUG(8,("specific: [%s], len: %d\n", valuename, size)); DEBUG(10, ("regdb_unpack_values: value[%d]: name[%s] len[%d]\n",
i, valuename, size));
} }
return len; return len;