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]

A patch for pwd/Versions


While working on the link-time compatibility, I noticed that getpwnam_r
was missing from GLIBC_2.1.2 in both glibc 2.1 and 2.2. Here is a
patch.

-- 
H.J. Lu (hjl@gnu.org)
---
2000-11-08  H.J. Lu  <hjl@gnu.org>

	* pwd/Versions (GLIBC_2.1.2): Add getpwnam_r.

Index: pwd/Versions
===================================================================
RCS file: /work/cvs/gnu/glibc/pwd/Versions,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Versions
--- pwd/Versions	2000/05/21 21:11:24	1.1.1.1
+++ pwd/Versions	2000/11/08 17:44:21
@@ -14,6 +14,6 @@ libc {
   }
   GLIBC_2.1.2 {
     # g*
-    getpwent_r; getpwuid_r;
+    getpwent_r; getpwuid_r; getpwnam_r;
   }
 }

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