Add a default case that just outputs a new line for the case of an
unknown header type.
This commit is contained in:
parent
120a95cb50
commit
b9609ab177
@ -182,6 +182,9 @@ main(int argc, char *argv[])
|
||||
case KTR_USER:
|
||||
ktruser(ktrlen, m);
|
||||
break;
|
||||
default:
|
||||
printf("\n");
|
||||
break;
|
||||
}
|
||||
if (tail)
|
||||
(void)fflush(stdout);
|
||||
|
Loading…
Reference in New Issue
Block a user