This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] getaddrinfo: remove dead code



----- Original Message -----
> From: "Siddhesh Poyarekar" <siddhesh@redhat.com>
> To: "Pavel Simerda" <psimerda@redhat.com>
> Cc: "libc-alpha" <libc-alpha@sourceware.org>
> Sent: Monday, December 2, 2013 10:24:48 AM
> Subject: Re: [PATCH] getaddrinfo: remove dead code
> 
> On Mon, Nov 25, 2013 at 12:33:06PM -0500, Pavel Simerda wrote:
> > Hi,
> > 
> > some time ago I found a couple of lines in getaddrinfo.c that are
> > redundant. Posting now.
> > 
> > Cheers,
> > 
> > Pavel
> > 
> > 	* sysdeps/posix/getaddrinfo.c: Remove dead code.
> 
> The ChangeLog entry is incorrect.  It should be:
> 
> 	* sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
> 	(struct gaih): Remove definition.
> 
> OK otherwise.  I'll commit it shortly.

Thanks!

Pavel

> Thanks,
> Siddhesh
> 
> > 
> > diff --git a/sysdeps/posix/getaddrinfo.c b/sysdeps/posix/getaddrinfo.c
> > index 8ff74b4..387c22f 100644
> > --- a/sysdeps/posix/getaddrinfo.c
> > +++ b/sysdeps/posix/getaddrinfo.c
> > @@ -74,10 +74,6 @@ extern int __idna_to_unicode_lzlz (const char *input,
> > char **output,
> >  #define GAIH_OKIFUNSPEC 0x0100
> >  #define GAIH_EAI        ~(GAIH_OKIFUNSPEC)
> >  
> > -#ifndef UNIX_PATH_MAX
> > -# define UNIX_PATH_MAX  108
> > -#endif
> > -
> >  struct gaih_service
> >    {
> >      const char *name;
> > @@ -127,14 +123,6 @@ static const struct gaih_typeproto
> > gaih_inet_typeproto[] =
> >    { 0, 0, 0, false, "" }
> >  };
> >  
> > -struct gaih
> > -  {
> > -    int family;
> > -    int (*gaih)(const char *name, const struct gaih_service *service,
> > -		const struct addrinfo *req, struct addrinfo **pai,
> > -		unsigned int *naddrs);
> > -  };
> > -
> >  static const struct addrinfo default_hints =
> >    {
> >      .ai_flags = AI_DEFAULT,
> 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]