mirror of git://sourceware.org/git/glibc.git
Update.
1998-03-07 Ulrich Drepper <drepper@cygnus.com> * elf/link.h: Fix typos. Reported by Andreas Jaeger. * nscd/nscd_getpw_r.c (__nscd_getpw_r): Remove false comment. * nscd/nscd_getgr_r.c (__nscd_getgr_r): Likewise. * sysdeps/i386/elf/start.S: Don't call main directly, call * nis/nis_call.c (__do_niscall): Safe and reset errno. * nis/ypclnt.c (do_ypcall, yp_all): Safe and reset errno.
This commit is contained in:
parent
b7296fd4ee
commit
a78de796b7
14
ChangeLog
14
ChangeLog
|
@ -1,3 +1,11 @@
|
|||
1998-03-07 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* elf/link.h: Fix typos.
|
||||
Reported by Andreas Jaeger.
|
||||
|
||||
* nscd/nscd_getpw_r.c (__nscd_getpw_r): Remove false comment.
|
||||
* nscd/nscd_getgr_r.c (__nscd_getgr_r): Likewise.
|
||||
|
||||
1998-03-06 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* argp/argp-help.c: Remove last bits of using gettext instead of
|
||||
|
@ -25,8 +33,8 @@
|
|||
For LD_DEBUG=libs also set _dl_debug_impcalls.
|
||||
* sysdeps/generic/dl-cache.c: Include unistd.h.
|
||||
* sysdeps/generic/libc-start.c: New file.
|
||||
* sysdeps/i386/elf/start.S: Don't call main directly, call
|
||||
* sysdeps/unix/sysv/linux/libc-start.c: New file.
|
||||
* sysdeps/i386/elf/start.S: Don't call main directly, call
|
||||
__libc_start_main instead.
|
||||
|
||||
* elf/Makefile ($(objpfx)ld.so): Add $(load-map-file) as dependency.
|
||||
|
@ -71,9 +79,9 @@
|
|||
|
||||
1998-03-06 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||
|
||||
* nis/nis_call.c (do_ypcall, yp_all): Safe and reset errno.
|
||||
* nis/nis_call.c (__do_niscall): Safe and reset errno.
|
||||
|
||||
* nis/ypclnt.c (__yp_bind): Safe and reset errno.
|
||||
* nis/ypclnt.c (do_ypcall, yp_all): Safe and reset errno.
|
||||
|
||||
1998-03-01 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||
|
||||
|
|
|
@ -231,7 +231,7 @@ typedef void (*receiver_fct) (int, const char *, const char *);
|
|||
user interface to run-time dynamic linking. */
|
||||
|
||||
|
||||
/* Parameters passed to te dynamic linker. */
|
||||
/* Parameters passed to the dynamic linker. */
|
||||
extern char **_dl_argv;
|
||||
|
||||
/* Cached value of `getpagesize ()'. */
|
||||
|
@ -245,7 +245,7 @@ extern const char *_dl_profile;
|
|||
/* Map of shared object to be profiled. */
|
||||
extern struct link_map *_dl_profile_map;
|
||||
|
||||
/* If nonzero the appropriate debug information if printed. */
|
||||
/* If nonzero the appropriate debug information is printed. */
|
||||
extern int _dl_debug_libs;
|
||||
extern int _dl_debug_impcalls;
|
||||
|
||||
|
|
|
@ -101,7 +101,6 @@ __nscd_getgr_r (const char *key, request_type type, struct group *resultbuf,
|
|||
|
||||
if (sock == -1)
|
||||
{
|
||||
/* Returning two signals that contacting the daemon failed. */
|
||||
__nss_not_use_nscd_group = 1;
|
||||
return 1;
|
||||
}
|
||||
|
|
|
@ -101,7 +101,6 @@ __nscd_getpw_r (const char *key, request_type type, struct passwd *resultbuf,
|
|||
|
||||
if (sock == -1)
|
||||
{
|
||||
/* Returning two signals that contacting the daemon failed. */
|
||||
__nss_not_use_nscd_passwd = 1;
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue