- 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)
source: ftp://ftp.bitwizard.nl/mtr/mtr-0.62.tar.gz
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.
AC_INIT(mtr.c)
-AM_INIT_AUTOMAKE(mtr, 0.61)
+AM_INIT_AUTOMAKE(mtr, 0.62)
AC_SUBST(GTK_OBJ)
#endif
if (host == NULL) {
- host = gethostbyname2(Hostname, af);
+ host = gethostbyname(Hostname);
}
if (host == NULL) {