From e32a18146eb52fc278833d7cfb49ed8d9ace62bc Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Tue, 25 Jan 2000 06:21:38 +0000 Subject: [PATCH] The conditional definition of the "np" variable didn't make any sense. It was only defined if HAVE_GETHOSTBYNAME was defined and only used when HAVE_GETHOSTBYNAME wasn't defined. I'm kind of surprised that never blew up anywhere. Changed the definition conditional to match the usage conditional. --- zotnet/mts/client.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zotnet/mts/client.c b/zotnet/mts/client.c index 2093374..924684c 100644 --- a/zotnet/mts/client.c +++ b/zotnet/mts/client.c @@ -92,8 +92,7 @@ client (char *args, char *protocol, char *service, int rproto, char *arguments[MAXARGS]; register struct hostent *hp; register struct servent *sp; -/* we assume netent and getnetbyaddr come with gethostbyname */ -#ifdef HAVE_GETHOSTBYNAME +#ifndef HAVE_GETHOSTBYNAME register struct netent *np; #endif -- 1.7.10.4