From 1db154464e03e9561cb8fdb7b25d7f2c5ed8de84 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Thu, 18 Apr 2002 21:53:33 +0000 Subject: Removed the call to inet_aton() since the gethostbyname() function handles the dotted-decimal case itself. --- src/sock.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/sock.c b/src/sock.c index 9723a36..53bbbb5 100644 --- a/src/sock.c +++ b/src/sock.c @@ -1,4 +1,4 @@ -/* $Id: sock.c,v 1.29 2002-04-18 18:48:22 rjkaes Exp $ +/* $Id: sock.c,v 1.30 2002-04-18 21:53:33 rjkaes Exp $ * * Sockets are created and destroyed here. When a new connection comes in from * a client, we need to copy the socket and the create a second socket to the @@ -50,11 +50,13 @@ lookup_domain(struct in_addr *addr, const char *domain) if (!addr || !domain) return -1; +#if 0 /* * First check to see if the domain is in dotted-decimal format. */ if (inet_aton(domain, (struct in_addr *)addr) != 0) return 0; +#endif /* * Okay, it's an alpha-numeric domain, so look it up. -- cgit v1.2.3