From 53e1150f66a478d3c52180d395a123ae9fcb8618 Mon Sep 17 00:00:00 2001 From: Paul Warren Date: Thu, 5 Jan 2017 21:23:57 +0000 Subject: Support for unlimited number of lines of output in text mode - Roman Hoog Antink --- ChangeLog | 3 +++ tui.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9efcb95..4b639f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + * Fix handling of short packets Frédéric Perrin diff --git a/tui.c b/tui.c index 75c6e08..af10a2f 100644 --- a/tui.c +++ b/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++; -- cgit v1.2.3