From: Roger Wolff Date: Wed, 15 May 2002 00:00:00 +0000 (+0000) Subject: mtr v0.51 X-Git-Tag: v0.51^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f291c7b20ff47de0109fea5cc4016d5cb5b83f26;p=thirdparty%2Fmtr.git mtr v0.51 - Fixed the bug introduced by the previous select loop fix... Thanks Evgeniy source: ftp://ftp.bitwizard.nl/mtr/mtr-0.51.tar.gz --- diff --git a/NEWS b/NEWS index a0cd695..4a45a5b 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,8 @@ WHAT'S NEW? + + v0.51 Fixed the bug introduced by the previous select loop fix... + Thanks Evgeniy + v0.50 Make "interface address" option work. Changes to "select" loop to allow window resizes (select interruption) to work. Thanks Mike! diff --git a/configure.in b/configure.in index 4738aab..5b4ddab 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ AC_INIT(mtr.c) -AM_INIT_AUTOMAKE(mtr, 0.50) +AM_INIT_AUTOMAKE(mtr, 0.51) AC_SUBST(GTK_OBJ) AC_SUBST(CURSES_OBJ) diff --git a/select.c b/select.c index 2620b31..7268699 100644 --- a/select.c +++ b/select.c @@ -97,7 +97,7 @@ void select_loop() { thistime.tv_usec >= lasttime.tv_usec + intervaltime.tv_usec)) { lasttime = thistime; if(NumPing >= MaxPing && !Interactive) - break; + return; if (net_send_batch()) NumPing++; }