Respect decimal flag when dumping USER type records.
This commit is contained in:
parent
ab1792c4b3
commit
4d840fd809
@ -565,6 +565,9 @@ ktruser(int len, unsigned char *p)
|
||||
{
|
||||
(void)printf("%d ", len);
|
||||
while (len--)
|
||||
if (decimal)
|
||||
(void)printf(" %d", *p++);
|
||||
else
|
||||
(void)printf(" %02x", *p++);
|
||||
(void)printf("\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user