On 8/15/07, Alex Karasulu <[EMAIL PROTECTED]> wrote: > If a host's network name is not properly configured properly the following > tests fail > since they try to bind to the name of the host instead of localhost.
Both Kerberos TGS tests (and the NTP integration test) were using InetAddress.getLocalHost(), which would fail if your host/IP wasn't properly configured. I updated this to use the better practice of InetAddress.getByName( null ). Enrique
