diff --git a/CHANGES b/CHANGES index cbe11e5..c1ed49b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,7 @@ Change log for iftop $Id$ -0.10 +0.10 29/10/02 User selectable sort criteria On-the-fly filter code changes @@ -9,6 +9,8 @@ Shell escape Alternative resolver back-ends Improved totals display Added regexp based screen filtering +Fixed pause functionality +Change option names to be more like tcpdump 0.9 22/10/02 diff --git a/Makefile b/Makefile index b60388d..e74cebf 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ # $Id$ # -VERSION = 0.10pre4 +VERSION = 0.10 # C compiler to use. #CC = gcc diff --git a/options.c b/options.c index c734e56..6915cdd 100644 --- a/options.c +++ b/options.c @@ -228,6 +228,10 @@ void options_read(int argc, char **argv) { } } - if (optind != argc) - fprintf(stderr, "iftop: warning: ignored arguments following options\n"); + if (optind != argc) { + fprintf(stderr, "iftop: found arguments following options\n"); + fprintf(stderr, "*** some options have changed names since v0.9 ***\n"); + usage(stderr); + exit(1); + } }