mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
MFp4 @229085:
Rearrange the code so we don't call ioctl(TIOCGWINSZ) if the -s option is given, as the result won't be used then. Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
e2e9c35fa4
commit
4b0ae51212
1 changed files with 5 additions and 5 deletions
|
|
@ -1205,6 +1205,11 @@ ktrgenio(struct ktr_genio *ktr, int len)
|
|||
static int screenwidth = 0;
|
||||
int i, binary;
|
||||
|
||||
printf("fd %d %s %d byte%s\n", ktr->ktr_fd,
|
||||
ktr->ktr_rw == UIO_READ ? "read" : "wrote", datalen,
|
||||
datalen == 1 ? "" : "s");
|
||||
if (suppressdata)
|
||||
return;
|
||||
if (screenwidth == 0) {
|
||||
struct winsize ws;
|
||||
|
||||
|
|
@ -1214,11 +1219,6 @@ ktrgenio(struct ktr_genio *ktr, int len)
|
|||
else
|
||||
screenwidth = 80;
|
||||
}
|
||||
printf("fd %d %s %d byte%s\n", ktr->ktr_fd,
|
||||
ktr->ktr_rw == UIO_READ ? "read" : "wrote", datalen,
|
||||
datalen == 1 ? "" : "s");
|
||||
if (suppressdata)
|
||||
return;
|
||||
if (maxdata && datalen > maxdata)
|
||||
datalen = maxdata;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue