This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

Re: any more changes/problems?


On Fri, Jan 12, 2001 at 04:11:47PM -0800, Ulrich Drepper wrote:
> If you have anything left tell me now.  Otherwise 2.2.1 will go out
> soon (maybe over the weekend).

I have this one, plus I'm now hacking on getent additions
(which can wait after 2.2.1 though).

2001-01-13  Jakub Jelinek  <jakub@redhat.com>

	* inet/ether_ntoh.c (ether_ntohost): Pass errno pointer to NSS
	function.

--- libc/inet/ether_ntoh.c.jj	Tue Jan  2 14:17:33 2001
+++ libc/inet/ether_ntoh.c	Sat Jan 13 01:16:01 2001
@@ -65,7 +65,7 @@ ether_ntohost (char *hostname, const str
     {
       char buffer[1024];
 
-      status = (*fct) (addr, &etherent, buffer, sizeof buffer);
+      status = (*fct) (addr, &etherent, buffer, sizeof buffer, &errno);
 
       no_more = __nss_next (&nip, "getntohost_r", (void **) &fct, status, 0);
     }


	Jakub

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