about summary refs log tree commit diff
path: root/nss/nss_files/files-XXX.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-03-24 19:28:00 +0000
committerUlrich Drepper <drepper@redhat.com>2008-03-24 19:28:00 +0000
commit0facd3df4b2faeb6088fa9bf47e94ff6af256750 (patch)
tree11e6c5a2e9c951f06f6ecd5d803c7b99543c8926 /nss/nss_files/files-XXX.c
parent7e570c5520d0db2a9f7d10135bc43cf5839cb234 (diff)
downloadglibc-0facd3df4b2faeb6088fa9bf47e94ff6af256750.tar.gz
glibc-0facd3df4b2faeb6088fa9bf47e94ff6af256750.tar.xz
glibc-0facd3df4b2faeb6088fa9bf47e94ff6af256750.zip
* nis/nis_call.c (nis_server_cache_search): Save errno around stat
	call.
	(__nisfind_server): Similar for open readColdStartFile call.
	Patch partially by Jim Meyering.
	* nss/nss_files/files-XXX.c (_nss_files_getXXent_r): Save errno
	around internal_setent call.
Diffstat (limited to 'nss/nss_files/files-XXX.c')
-rw-r--r--nss/nss_files/files-XXX.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/nss/nss_files/files-XXX.c b/nss/nss_files/files-XXX.c
index 2149d1c401..426007e1ad 100644
--- a/nss/nss_files/files-XXX.c
+++ b/nss/nss_files/files-XXX.c
@@ -1,5 +1,6 @@
 /* Common code for file-based databases in nss_files module.
-   Copyright (C) 1996-1999,2001,2002,2004,2007 Free Software Foundation, Inc.
+   Copyright (C) 1996-1999,2001,2002,2004,2007,2008
+   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
@@ -254,8 +255,12 @@ CONCAT(_nss_files_get,ENTNAME_r) (struct STRUCTURE *result, char *buffer,
   /* Be prepared that the set*ent function was not called before.  */
   if (stream == NULL)
     {
+      int save_errno = errno;
+
       status = internal_setent (0);
 
+      __set_errno (errno);
+
       if (status == NSS_STATUS_SUCCESS && fgetpos (stream, &position) < 0)
 	{
 	  fclose (stream);