diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-07-03 14:49:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-07-03 14:49:53 +0000 |
commit | 57c9179cab174f606a05b0372600efedd3331b92 (patch) | |
tree | 9accf6a508b1ba8e1c006be238ac0576548b1d03 | |
parent | d0b283a86136d9dcb05d3b8ce6ee9adb5c5b1494 (diff) | |
download | glibc-57c9179cab174f606a05b0372600efedd3331b92.tar.gz glibc-57c9179cab174f606a05b0372600efedd3331b92.tar.xz glibc-57c9179cab174f606a05b0372600efedd3331b92.zip |
[BZ #4702]
2007-07-03 Jakub Jelinek <jakub@redhat.com> [BZ #4702] * nis/nss-default.c: Include errno.h. (init): Preserve errno.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | nis/nss-default.c | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 2f1d93eea8..0a48667197 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-03 Jakub Jelinek <jakub@redhat.com> + + [BZ #4702] + * nis/nss-default.c: Include errno.h. + (init): Preserve errno. + 2007-07-02 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/bits/socket.h (PF_UNIX): Update comment. diff --git a/nis/nss-default.c b/nis/nss-default.c index 577f7c2d47..046ddfee8d 100644 --- a/nis/nss-default.c +++ b/nis/nss-default.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 2001, 2004, 2006 Free Software Foundation, Inc. +/* Copyright (C) 1996, 2001, 2004, 2006, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,6 +17,7 @@ 02111-1307 USA. */ #include <ctype.h> +#include <errno.h> #include <stdio.h> #include <stdio_ext.h> #include <stdlib.h> @@ -54,6 +55,7 @@ static const struct static void init (void) { + int saved_errno = errno; FILE *fp = fopen (default_nss, "rc"); if (fp != NULL) { @@ -111,6 +113,7 @@ init (void) fclose (fp); } + __set_errno (saved_errno); } |