Man page documentation of -t mode.

Compile time warning fixes.
Markus Koschany <apo@gambaru.de>
This commit is contained in:
pdw
2014-01-05 17:22:39 +00:00
parent e81c0d8aae
commit a7b8639fc9
2 changed files with 5 additions and 1 deletions

View File

@@ -100,6 +100,10 @@ bitmasking.
\fB-c\fP \fIconfig file\fP
Specifies an alternate config file. If not specified, iftop will use
\fB~/.iftoprc\fP if it exists. See below for a description of config files
.TP
\fB-t\fP \fItext output mode\fP
Use text interface without ncurses and print the output to STDOUT.
.SH DISPLAY

View File

@@ -145,7 +145,7 @@ void tick(int print) {
if(t - last_timestamp >= RESOLUTION) {
analyse_data();
if (options.no_curses) {
if (!options.timed_output || options.timed_output && t - first_timestamp >= options.timed_output) {
if (!options.timed_output || (options.timed_output && t - first_timestamp >= options.timed_output)) {
tui_print();
if (options.timed_output) {
finish(SIGINT);