about summary refs log tree commit diff
path: root/gshadow
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-05-10 18:38:52 +0000
committerUlrich Drepper <drepper@redhat.com>2009-05-10 18:38:52 +0000
commitdeb84c43b1bb0958d942e6739f136d4c11189b3b (patch)
tree91d06939ae5470d2cbd90c3cb279316554b75302 /gshadow
parenteb29449a9a601f535cab50068e02aee0aa1ed379 (diff)
downloadglibc-deb84c43b1bb0958d942e6739f136d4c11189b3b.tar.gz
glibc-deb84c43b1bb0958d942e6739f136d4c11189b3b.tar.xz
glibc-deb84c43b1bb0958d942e6739f136d4c11189b3b.zip
* version.h (VERSION): Bump to 2.10.1. cvs/fedora-glibc-20090510T1842 cvs/master
	* nss/getXXbyYY_r.c: If NO_COMPAT_NEEDED is defined don't define any
	compatibility functions.
	* nss/getXXent_r.c: Likewise.
	* gshadow/getsgent_r.c: Define NO_COMPAT_NEEDED.
	* gshadow/getsgnam_r.c: Likewise.
	* gshadow/Version: Remove duplicate entries.

	* sysdeps/x86_64/cacheinfo.c (intel_02_cache_info): Add missing entries
	for recent processor.
	* sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_cache_info):
	Likewise.
Diffstat (limited to 'gshadow')
-rw-r--r--gshadow/Versions2
-rw-r--r--gshadow/getsgent_r.c1
-rw-r--r--gshadow/getsgnam_r.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/gshadow/Versions b/gshadow/Versions
index 00a410b74f..1dba0c5f19 100644
--- a/gshadow/Versions
+++ b/gshadow/Versions
@@ -7,7 +7,7 @@ libc {
     fgetsgent; fgetsgent_r;
 
     # g*
-    getsgent; getsgent_r; getsgnam; getsgnam_r; getsgent_r; getsgnam_r;
+    getsgent; getsgent_r; getsgnam; getsgnam_r;
 
     # p*
     putsgent;
diff --git a/gshadow/getsgent_r.c b/gshadow/getsgent_r.c
index 336110ec89..9feea9f047 100644
--- a/gshadow/getsgent_r.c
+++ b/gshadow/getsgent_r.c
@@ -26,5 +26,6 @@
 #define	ENDFUNC_NAME		endsgent
 #define DATABASE_NAME		gshadow
 #define BUFLEN			1024
+#define NO_COMPAT_NEEDED	1
 
 #include "../nss/getXXent_r.c"
diff --git a/gshadow/getsgnam_r.c b/gshadow/getsgnam_r.c
index c89fb06bfa..a9ab764675 100644
--- a/gshadow/getsgnam_r.c
+++ b/gshadow/getsgnam_r.c
@@ -26,5 +26,6 @@
 #define ADD_PARAMS		const char *name
 #define ADD_VARIABLES		name
 #define BUFLEN			1024
+#define NO_COMPAT_NEEDED	1
 
 #include "../nss/getXXbyYY_r.c"