diff -ur mtr-0.61/NEWS mtr-0.62/NEWS
--- mtr-0.61/NEWS	Wed Aug 11 13:33:58 2004
+++ mtr-0.62/NEWS	Thu Aug 12 18:41:47 2004
@@ -1,4 +1,9 @@
 WHAT'S NEW?
+  v0.62 Apparently someone changed gethostbyname into gethostbyname2
+        in mtr.c in an attempt to add IPV6 support. For systems without
+        ipv6 support, the old gethostbyname should be used! Linux 
+        has the call even if you don't enable IPV6. Thanks Gary (rsub)
+
   v0.61 Attempt to get/print the local IP address. Now shows as
         0.0.0.0 :-( Hints and tips appreciated! -- REW
         Lots of blank space reformatting.
diff -ur mtr-0.61/configure mtr-0.62/configure
--- mtr-0.61/configure	Wed Aug 11 07:51:49 2004
+++ mtr-0.62/configure	Wed Aug 11 13:40:17 2004
@@ -793,7 +793,7 @@
 
 # Define the identity of the package.
 PACKAGE=mtr
-VERSION=0.61
+VERSION=0.62
 cat >> confdefs.h <<EOF
 #define PACKAGE "$PACKAGE"
 EOF
diff -ur mtr-0.61/configure.in mtr-0.62/configure.in
--- mtr-0.61/configure.in	Tue Aug 10 23:25:06 2004
+++ mtr-0.62/configure.in	Wed Aug 11 13:40:16 2004
@@ -1,5 +1,5 @@
 AC_INIT(mtr.c)
-AM_INIT_AUTOMAKE(mtr, 0.61)
+AM_INIT_AUTOMAKE(mtr, 0.62)
 
 
 AC_SUBST(GTK_OBJ)
diff -ur mtr-0.61/mtr.c mtr-0.62/mtr.c
--- mtr-0.61/mtr.c	Wed Aug 11 13:08:11 2004
+++ mtr-0.62/mtr.c	Thu Aug 12 18:39:40 2004
@@ -376,7 +376,7 @@
 #endif
    
   if (host == NULL) {
-    host = gethostbyname2(Hostname, af);
+    host = gethostbyname(Hostname);
   }
   
   if (host == NULL) {
