]> git.ipfire.org Git - thirdparty/mtr.git/commitdiff
mtr v0.51 v0.51
authorRoger Wolff <r.e.wolff@bitwizard.nl>
Wed, 15 May 2002 00:00:00 +0000 (00:00 +0000)
committerTravis Cross <tc@traviscross.com>
Sun, 3 Feb 2013 20:45:37 +0000 (20:45 +0000)
 - Fixed the bug introduced by the previous select loop fix...  Thanks
   Evgeniy

source: ftp://ftp.bitwizard.nl/mtr/mtr-0.51.tar.gz

NEWS
configure.in
select.c

diff --git a/NEWS b/NEWS
index a0cd6950d119629e6a12e1c084d1dd9fcdf7c6e8..4a45a5bf8c87befbeccdf2185588847cf2c329af 100644 (file)
--- 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!
index 4738aabc15512519135c088f80c4a8bb54fce1a6..5b4ddabb42d6b1dfa1e0a95fb729d3f85a7cf0f6 100644 (file)
@@ -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)
index 2620b31c6629a889302677cf8f0ec603da6fc9e6..72686990aa22c0be83e807ced073c1e3db8545b8 100644 (file)
--- 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++;
        }