Support for unlimited number of lines of output in text mode - Roman Hoog Antink <rha@open.ch>
This commit is contained in:
@@ -6,6 +6,9 @@ Unattributed items are by Paul Warren and Chris Lightfoot.
|
||||
|
||||
1.0
|
||||
|
||||
* Support for unlimited number of lines of output for text mode
|
||||
Roman Hoog Antink <rha@open.ch>
|
||||
|
||||
* Fix handling of short packets
|
||||
Frédéric Perrin <fperrin@brocade.com>
|
||||
|
||||
|
||||
2
tui.c
2
tui.c
@@ -73,7 +73,7 @@ void tui_print() {
|
||||
printf("\n");
|
||||
|
||||
/* Traverse the list of all connections */
|
||||
while((nn = sorted_list_next_item(&screen_list, nn)) != NULL && l < options.num_lines) {
|
||||
while((nn = sorted_list_next_item(&screen_list, nn)) != NULL && (!options.num_lines || l < options.num_lines)) {
|
||||
/* Increment the line counter */
|
||||
l++;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user