mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Wrap lines correctly for the `l' command.
This commit is contained in:
parent
011b358aba
commit
d1ccc822a5
1 changed files with 1 additions and 1 deletions
|
|
@ -480,7 +480,7 @@ lputs(s)
|
|||
}
|
||||
|
||||
for (count = 0; *s; ++s) {
|
||||
if (count >= termwidth) {
|
||||
if (count + 5 >= termwidth) {
|
||||
(void)printf("\\\n");
|
||||
count = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue