From owner-cvs-src@FreeBSD.ORG Thu Oct 23 17:04:37 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75CA516A4B3; Thu, 23 Oct 2003 17:04:37 -0700 (PDT) Received: from fafoe.narf.at (chello212186121237.14.vie.surfer.at [212.186.121.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43B0C43F85; Thu, 23 Oct 2003 17:04:36 -0700 (PDT) (envelope-from stefan@fafoe.narf.at) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.2.102]) by fafoe.narf.at (Postfix) with ESMTP id 7765D4100; Fri, 24 Oct 2003 02:04:34 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 211C788; Fri, 24 Oct 2003 02:04:34 +0200 (CEST) Date: Fri, 24 Oct 2003 02:04:33 +0200 From: Stefan Farfeleder To: Hajimu UMEMOTO Message-ID: <20031024000432.GF609@wombat.fafoe.narf.at> References: <200310231754.h9NHsH1k069480@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310231754.h9NHsH1k069480@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/include netdb.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Oct 2003 00:04:37 -0000 On Thu, Oct 23, 2003 at 10:54:17AM -0700, Hajimu UMEMOTO wrote: > ume 2003/10/23 10:54:17 PDT > > FreeBSD src repository > > Modified files: > include netdb.h > Log: > workaround to have backward compatibility for EAI_NODATA. > it will be removed on 23 Apr 2004. > > Submitted by: terry | @@ -163,6 +163,7 @@ struct addrinfo { | #define EAI_NODATA 7 /* no address associated with hostname */ | #endif | #define EAI_NONAME 8 /* hostname nor servname provided, or not known */ | +#define EAI_NODATA EAINONAME /* To be removed on 23 APR 2004 */ | #define EAI_SERVICE 9 /* servname not supported for ai_socktype */ | #define EAI_SOCKTYPE 10 /* ai_socktype not supported */ | #define EAI_SYSTEM 11 /* system error returned in errno */ s/EAINONAME/EAI_NONAME/ Stefan