On Fri, May 28, 2004 at 08:19:03AM +0100, paul@xxxxxxxxxxxxx wrote: > Perhaps I'll download the source and have a look into this. Well, that was pretty obvious: anaconda-10.0/isys/nfsmount.c #if 1 /* old libc's do not have inet_aton() -- change 1 to 0 */ if (!inet_aton(hostname, &server_addr.sin_addr)) #endif { if (mygethostbyname(hostname, &server_addr.sin_addr)) { myerror = ERROR_HOSTNAME; goto fail; } else { server_addr.sin_family = AF_INET; } } Paul