diff -ur mtr-0.50/NEWS mtr-0.51/NEWS
--- mtr-0.50/NEWS	Tue May  7 07:53:15 2002
+++ mtr-0.51/NEWS	Wed May 15 15:14:23 2002
@@ -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 -ur mtr-0.50/configure mtr-0.51/configure
--- mtr-0.50/configure	Thu Mar  7 13:19:13 2002
+++ mtr-0.51/configure	Tue May  7 07:54:39 2002
@@ -699,7 +699,7 @@
 
 PACKAGE=mtr
 
-VERSION=0.50
+VERSION=0.51
 
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
   { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
diff -ur mtr-0.50/configure.in mtr-0.51/configure.in
--- mtr-0.50/configure.in	Thu Mar  7 13:19:11 2002
+++ mtr-0.51/configure.in	Tue May  7 07:54:37 2002
@@ -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 -ur mtr-0.50/img/Makefile.in mtr-0.51/img/Makefile.in
--- mtr-0.50/img/Makefile.in	Thu Mar  7 13:19:11 2002
+++ mtr-0.51/img/Makefile.in	Wed May 15 15:13:15 2002
@@ -1,6 +1,6 @@
-# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am
+# Makefile.in generated automatically by automake 1.4 from Makefile.am
 
-# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -99,7 +99,7 @@
 	@for file in $(DISTFILES); do \
 	  d=$(srcdir); \
 	  if test -d $$d/$$file; then \
-	    cp -pr $$d/$$file $(distdir)/$$file; \
+	    cp -pr $$/$$file $(distdir)/$$file; \
 	  else \
 	    test -f $(distdir)/$$file \
 	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
diff -ur mtr-0.50/select.c mtr-0.51/select.c
--- mtr-0.50/select.c	Tue May  7 07:50:33 2002
+++ mtr-0.51/select.c	Wed May 15 15:12:51 2002
@@ -97,7 +97,7 @@
 	    thistime.tv_usec >= lasttime.tv_usec + intervaltime.tv_usec)) {
 	  lasttime = thistime;
 	  if(NumPing >= MaxPing && !Interactive)
-	    break;
+	    return;
 	  if (net_send_batch())
 	    NumPing++;
 	}
