public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases
@ 2007-12-09  4:34 vapier at gentoo dot org
  2007-12-09  4:36 ` [Bug libc/5460] " vapier at gentoo dot org
                   ` (34 more replies)
  0 siblings, 35 replies; 38+ messages in thread
From: vapier at gentoo dot org @ 2007-12-09  4:34 UTC (permalink / raw)
  To: glibc-bugs

if /etc/hosts looks like:
127.0.0.1       localhost localhost4
::1             localhost localhost6

and you lookup "localhost6" with getaddrinfo(), the function returns "127.0.0.1"
and "::1"

glibc-2.5 and older operates correctly and only returns "::1".  glibc-2.6 and
newer will in addition incorrectly return "127.0.0.1".

-- 
           Summary: glibc-2.6+ returns too many results from /etc/hosts in
                    some cases
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: vapier at gentoo dot org
                CC: glibc-bugs at sources dot redhat dot com,toolchain at
                    gentoo dot org


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
@ 2007-12-09  4:36 ` vapier at gentoo dot org
  2008-04-07 16:35 ` drepper at redhat dot com
                   ` (33 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: vapier at gentoo dot org @ 2007-12-09  4:36 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From vapier at gentoo dot org  2007-12-09 04:36 -------
Created an attachment (id=2128)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2128&action=view)
getaddrinfo.c test case

running this test case on newer glibc's will show:
$ ./getaddrinfo localhost6
--- looking up 'localhost6' for family 0 (0)
getaddrinfo(...) = EAI_NONAME, trying again with AI_CANONNAME
getaddrinfo(...) = 0
getnameinfo(...) = 0
	name = 127.0.0.1
	service = 23
getnameinfo(...) = 0
	name = ::1
	service = 23
--- looking up 'localhost6' for family AF_INET (2)
getaddrinfo(...) = EAI_NONAME, trying again with AI_CANONNAME
getaddrinfo(...) = 0
getnameinfo(...) = 0
	name = 127.0.0.1
	service = 23
--- looking up 'localhost6' for family AF_INET6 (10)
getaddrinfo(...) = EAI_NONAME, trying again with AI_CANONNAME
getaddrinfo(...) = 0
getnameinfo(...) = 0
	name = ::1
	service = 23

on older glibc versions, that "127.0.0.1" entry wont crop up

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
  2007-12-09  4:36 ` [Bug libc/5460] " vapier at gentoo dot org
@ 2008-04-07 16:35 ` drepper at redhat dot com
  2008-04-07 17:46 ` vapier at gentoo dot org
                   ` (32 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-04-07 16:35 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2008-04-07 16:34 -------
Returning both entries is correct.  It's the same in DNS: multiple entries are
all returned.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
  2007-12-09  4:36 ` [Bug libc/5460] " vapier at gentoo dot org
  2008-04-07 16:35 ` drepper at redhat dot com
@ 2008-04-07 17:46 ` vapier at gentoo dot org
  2008-04-09 17:06 ` drepper at redhat dot com
                   ` (31 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: vapier at gentoo dot org @ 2008-04-07 17:46 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From vapier at gentoo dot org  2008-04-07 17:45 -------
looking up "localhost6" should never result in "127.0.0.1"

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (2 preceding siblings ...)
  2008-04-07 17:46 ` vapier at gentoo dot org
@ 2008-04-09 17:06 ` drepper at redhat dot com
  2008-04-09 17:26 ` pasky at suse dot cz
                   ` (30 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-04-09 17:06 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2008-04-09 17:05 -------
The code works as designed.  This is no new change.  Back in November 2006 I
added code to map V6 addresses to v4 addresses in gethostbyname2(AF_INET) calls
if it is possible.  This is what happens here.  The results are not wrong since
you did not ask for a specific protocol.

At some point, when we have unified lookup instead of separate IPv4/v6 lookups,
this might change.  But for now it works as expected and the program will work
correctly.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (3 preceding siblings ...)
  2008-04-09 17:06 ` drepper at redhat dot com
@ 2008-04-09 17:26 ` pasky at suse dot cz
  2008-04-09 19:13 ` vapier at gentoo dot org
                   ` (29 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2008-04-09 17:26 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From pasky at suse dot cz  2008-04-09 17:25 -------
It is not obvious that the design of the current code makes any sense, but looks
like we will never get to know the reasons behind it... c.f.
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (4 preceding siblings ...)
  2008-04-09 17:26 ` pasky at suse dot cz
@ 2008-04-09 19:13 ` vapier at gentoo dot org
  2008-04-15  6:20 ` tpeland at tkukoulu dot fi
                   ` (28 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: vapier at gentoo dot org @ 2008-04-09 19:13 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |4980


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (5 preceding siblings ...)
  2008-04-09 19:13 ` vapier at gentoo dot org
@ 2008-04-15  6:20 ` tpeland at tkukoulu dot fi
  2008-04-15 14:21 ` drepper at redhat dot com
                   ` (27 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: tpeland at tkukoulu dot fi @ 2008-04-15  6:20 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (6 preceding siblings ...)
  2008-04-15  6:20 ` tpeland at tkukoulu dot fi
@ 2008-04-15 14:21 ` drepper at redhat dot com
  2008-07-07  5:06 ` dave dot houston at gmail dot com
                   ` (26 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-04-15 14:21 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |WONTFIX

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (7 preceding siblings ...)
  2008-04-15 14:21 ` drepper at redhat dot com
@ 2008-07-07  5:06 ` dave dot houston at gmail dot com
  2008-07-07  5:57 ` drepper at redhat dot com
                   ` (25 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: dave dot houston at gmail dot com @ 2008-07-07  5:06 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WONTFIX                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (8 preceding siblings ...)
  2008-07-07  5:06 ` dave dot houston at gmail dot com
@ 2008-07-07  5:57 ` drepper at redhat dot com
  2008-07-07 20:30 ` tg at mirbsd dot de
                   ` (24 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-07  5:57 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (9 preceding siblings ...)
  2008-07-07  5:57 ` drepper at redhat dot com
@ 2008-07-07 20:30 ` tg at mirbsd dot de
  2008-07-07 20:45 ` tonnerre at NetBSD dot org
                   ` (23 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: tg at mirbsd dot de @ 2008-07-07 20:30 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (10 preceding siblings ...)
  2008-07-07 20:30 ` tg at mirbsd dot de
@ 2008-07-07 20:45 ` tonnerre at NetBSD dot org
  2008-07-08  0:43 ` drepper at redhat dot com
                   ` (22 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: tonnerre at NetBSD dot org @ 2008-07-07 20:45 UTC (permalink / raw)
  To: glibc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tonnerre at NetBSD dot org


http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (11 preceding siblings ...)
  2008-07-07 20:45 ` tonnerre at NetBSD dot org
@ 2008-07-08  0:43 ` drepper at redhat dot com
  2008-07-08  1:31 ` mangmang at thisisnotmyrealemail dot com
                   ` (21 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-08  0:43 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (12 preceding siblings ...)
  2008-07-08  0:43 ` drepper at redhat dot com
@ 2008-07-08  1:31 ` mangmang at thisisnotmyrealemail dot com
  2008-07-08  3:29 ` drepper at redhat dot com
                   ` (20 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: mangmang at thisisnotmyrealemail dot com @ 2008-07-08  1:31 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (13 preceding siblings ...)
  2008-07-08  1:31 ` mangmang at thisisnotmyrealemail dot com
@ 2008-07-08  3:29 ` drepper at redhat dot com
  2008-07-08  4:48 ` junyer at gmail dot com
                   ` (19 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-08  3:29 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (14 preceding siblings ...)
  2008-07-08  3:29 ` drepper at redhat dot com
@ 2008-07-08  4:48 ` junyer at gmail dot com
  2008-07-08  5:09 ` drepper at redhat dot com
                   ` (18 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: junyer at gmail dot com @ 2008-07-08  4:48 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (15 preceding siblings ...)
  2008-07-08  4:48 ` junyer at gmail dot com
@ 2008-07-08  5:09 ` drepper at redhat dot com
  2008-07-08  6:00 ` robotdevice at gmail dot com
                   ` (17 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-08  5:09 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (16 preceding siblings ...)
  2008-07-08  5:09 ` drepper at redhat dot com
@ 2008-07-08  6:00 ` robotdevice at gmail dot com
  2008-07-08  6:29 ` tonnerre at NetBSD dot org
                   ` (16 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: robotdevice at gmail dot com @ 2008-07-08  6:00 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (17 preceding siblings ...)
  2008-07-08  6:00 ` robotdevice at gmail dot com
@ 2008-07-08  6:29 ` tonnerre at NetBSD dot org
  2008-07-08  7:08 ` mantari dot damacy at gmail dot com
                   ` (15 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: tonnerre at NetBSD dot org @ 2008-07-08  6:29 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (18 preceding siblings ...)
  2008-07-08  6:29 ` tonnerre at NetBSD dot org
@ 2008-07-08  7:08 ` mantari dot damacy at gmail dot com
  2008-07-08  7:41 ` tonnerre at NetBSD dot org
                   ` (14 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: mantari dot damacy at gmail dot com @ 2008-07-08  7:08 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (19 preceding siblings ...)
  2008-07-08  7:08 ` mantari dot damacy at gmail dot com
@ 2008-07-08  7:41 ` tonnerre at NetBSD dot org
  2008-07-08 18:08 ` M8R-ycntwi at sogetthis dot com
                   ` (13 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: tonnerre at NetBSD dot org @ 2008-07-08  7:41 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (20 preceding siblings ...)
  2008-07-08  7:41 ` tonnerre at NetBSD dot org
@ 2008-07-08 18:08 ` M8R-ycntwi at sogetthis dot com
  2008-07-08 18:28 ` drepper at redhat dot com
                   ` (12 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: M8R-ycntwi at sogetthis dot com @ 2008-07-08 18:08 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |VERIFIED
             Status|VERIFIED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (21 preceding siblings ...)
  2008-07-08 18:08 ` M8R-ycntwi at sogetthis dot com
@ 2008-07-08 18:28 ` drepper at redhat dot com
  2008-07-08 18:51 ` doot at mailinator dot com
                   ` (11 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-08 18:28 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (22 preceding siblings ...)
  2008-07-08 18:28 ` drepper at redhat dot com
@ 2008-07-08 18:51 ` doot at mailinator dot com
  2008-07-08 18:54 ` drepper at redhat dot com
                   ` (10 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: doot at mailinator dot com @ 2008-07-08 18:51 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (23 preceding siblings ...)
  2008-07-08 18:51 ` doot at mailinator dot com
@ 2008-07-08 18:54 ` drepper at redhat dot com
  2008-07-08 19:11 ` regis dot philbin at hush dot ai
                   ` (9 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: drepper at redhat dot com @ 2008-07-08 18:54 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (24 preceding siblings ...)
  2008-07-08 18:54 ` drepper at redhat dot com
@ 2008-07-08 19:11 ` regis dot philbin at hush dot ai
  2008-07-08 19:38 ` pasky at suse dot cz
                   ` (8 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: regis dot philbin at hush dot ai @ 2008-07-08 19:11 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (25 preceding siblings ...)
  2008-07-08 19:11 ` regis dot philbin at hush dot ai
@ 2008-07-08 19:38 ` pasky at suse dot cz
  2009-05-07  5:59 ` ufarkhead at yahoo dot com
                   ` (7 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2008-07-08 19:38 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |ASSIGNED
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (26 preceding siblings ...)
  2008-07-08 19:38 ` pasky at suse dot cz
@ 2009-05-07  5:59 ` ufarkhead at yahoo dot com
  2009-05-07  9:10 ` pasky at suse dot cz
                   ` (6 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: ufarkhead at yahoo dot com @ 2009-05-07  5:59 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (27 preceding siblings ...)
  2009-05-07  5:59 ` ufarkhead at yahoo dot com
@ 2009-05-07  9:10 ` pasky at suse dot cz
  2009-05-15  1:15 ` dedesantana at mailinator dot com
                   ` (5 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2009-05-07  9:10 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (28 preceding siblings ...)
  2009-05-07  9:10 ` pasky at suse dot cz
@ 2009-05-15  1:15 ` dedesantana at mailinator dot com
  2009-05-15  1:18 ` pasky at suse dot cz
                   ` (4 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: dedesantana at mailinator dot com @ 2009-05-15  1:15 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (29 preceding siblings ...)
  2009-05-15  1:15 ` dedesantana at mailinator dot com
@ 2009-05-15  1:18 ` pasky at suse dot cz
  2009-05-15 22:36 ` inuyasha dot exe at gmail dot com
                   ` (3 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2009-05-15  1:18 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (30 preceding siblings ...)
  2009-05-15  1:18 ` pasky at suse dot cz
@ 2009-05-15 22:36 ` inuyasha dot exe at gmail dot com
  2009-05-16  5:45 ` pasky at suse dot cz
                   ` (2 subsequent siblings)
  34 siblings, 0 replies; 38+ messages in thread
From: inuyasha dot exe at gmail dot com @ 2009-05-15 22:36 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (31 preceding siblings ...)
  2009-05-15 22:36 ` inuyasha dot exe at gmail dot com
@ 2009-05-16  5:45 ` pasky at suse dot cz
  2009-07-25  1:18 ` b501512 at tyldd dot com
  2009-08-20 11:48 ` pasky at suse dot cz
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2009-05-16  5:45 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (32 preceding siblings ...)
  2009-05-16  5:45 ` pasky at suse dot cz
@ 2009-07-25  1:18 ` b501512 at tyldd dot com
  2009-08-20 11:48 ` pasky at suse dot cz
  34 siblings, 0 replies; 38+ messages in thread
From: b501512 at tyldd dot com @ 2009-07-25  1:18 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
  2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
                   ` (33 preceding siblings ...)
  2009-07-25  1:18 ` b501512 at tyldd dot com
@ 2009-08-20 11:48 ` pasky at suse dot cz
  34 siblings, 0 replies; 38+ messages in thread
From: pasky at suse dot cz @ 2009-08-20 11:48 UTC (permalink / raw)
  To: glibc-bugs



-- 
Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
       [not found] <bug-5460-131@http.sourceware.org/bugzilla/>
  2012-03-31 21:03 ` slashtrooll at misc dot lka.org.lu
@ 2012-04-01  4:11 ` vapier at gentoo dot org
  1 sibling, 0 replies; 38+ messages in thread
From: vapier at gentoo dot org @ 2012-04-01  4:11 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 38+ messages in thread

* [Bug libc/5460] glibc-2.6+ returns too many results from /etc/hosts in some cases
       [not found] <bug-5460-131@http.sourceware.org/bugzilla/>
@ 2012-03-31 21:03 ` slashtrooll at misc dot lka.org.lu
  2012-04-01  4:11 ` vapier at gentoo dot org
  1 sibling, 0 replies; 38+ messages in thread
From: slashtrooll at misc dot lka.org.lu @ 2012-03-31 21:03 UTC (permalink / raw)
  To: glibc-bugs

http://sourceware.org/bugzilla/show_bug.cgi?id=5460

Bug 5460 depends on bug 4980, which changed state.

Bug 4980 Summary: gethostbyname() etc break for /etc/hosts with both ::1 and 127.0.0.1 localhost entries
http://sourceware.org/bugzilla/show_bug.cgi?id=4980

           What    |Old Value                   |New Value
----------------------------------------------------------------------------
             Status|RESOLVED                    |VERIFIED
             Status|VERIFIED                    |REOPENED
         Resolution|FIXED                       |

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2012-04-01  4:11 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-09  4:34 [Bug libc/5460] New: glibc-2.6+ returns too many results from /etc/hosts in some cases vapier at gentoo dot org
2007-12-09  4:36 ` [Bug libc/5460] " vapier at gentoo dot org
2008-04-07 16:35 ` drepper at redhat dot com
2008-04-07 17:46 ` vapier at gentoo dot org
2008-04-09 17:06 ` drepper at redhat dot com
2008-04-09 17:26 ` pasky at suse dot cz
2008-04-09 19:13 ` vapier at gentoo dot org
2008-04-15  6:20 ` tpeland at tkukoulu dot fi
2008-04-15 14:21 ` drepper at redhat dot com
2008-07-07  5:06 ` dave dot houston at gmail dot com
2008-07-07  5:57 ` drepper at redhat dot com
2008-07-07 20:30 ` tg at mirbsd dot de
2008-07-07 20:45 ` tonnerre at NetBSD dot org
2008-07-08  0:43 ` drepper at redhat dot com
2008-07-08  1:31 ` mangmang at thisisnotmyrealemail dot com
2008-07-08  3:29 ` drepper at redhat dot com
2008-07-08  4:48 ` junyer at gmail dot com
2008-07-08  5:09 ` drepper at redhat dot com
2008-07-08  6:00 ` robotdevice at gmail dot com
2008-07-08  6:29 ` tonnerre at NetBSD dot org
2008-07-08  7:08 ` mantari dot damacy at gmail dot com
2008-07-08  7:41 ` tonnerre at NetBSD dot org
2008-07-08 18:08 ` M8R-ycntwi at sogetthis dot com
2008-07-08 18:28 ` drepper at redhat dot com
2008-07-08 18:51 ` doot at mailinator dot com
2008-07-08 18:54 ` drepper at redhat dot com
2008-07-08 19:11 ` regis dot philbin at hush dot ai
2008-07-08 19:38 ` pasky at suse dot cz
2009-05-07  5:59 ` ufarkhead at yahoo dot com
2009-05-07  9:10 ` pasky at suse dot cz
2009-05-15  1:15 ` dedesantana at mailinator dot com
2009-05-15  1:18 ` pasky at suse dot cz
2009-05-15 22:36 ` inuyasha dot exe at gmail dot com
2009-05-16  5:45 ` pasky at suse dot cz
2009-07-25  1:18 ` b501512 at tyldd dot com
2009-08-20 11:48 ` pasky at suse dot cz
     [not found] <bug-5460-131@http.sourceware.org/bugzilla/>
2012-03-31 21:03 ` slashtrooll at misc dot lka.org.lu
2012-04-01  4:11 ` vapier at gentoo dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).