This is the mail archive of the libc-hacker@sourceware.cygnus.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]

[PATCH] getxxbyyy_r@GLIBC_2.0 fix


Hi!

Without this the compiled glibc has several undefined symvers.

1998-12-27  Jakub Jelinek  <jakub@redhat.com>

	* nss/getXXbyYY_r.c: Fix a typo in __old_getxxbyyy_r versioning.

--- libc/nss/getXXbyYY_r.c.jj	Tue Apr  4 01:33:00 2000
+++ libc/nss/getXXbyYY_r.c	Thu Apr 27 10:23:15 2000
@@ -236,7 +236,7 @@ OLD (REENTRANT_NAME) (ADD_PARAMS, LOOKUP
 
 #define do_symbol_version(real, name, version) \
   compat_symbol (libc, real, name, version)
-do_symbol_version (OLD (REENTRANT_GETNAME), REENTRANT_NAME, GLIBC_2_0);
+do_symbol_version (OLD (REENTRANT_NAME), REENTRANT_NAME, GLIBC_2_0);
 
 #define do_default_symbol_version(real, name, version) \
   versioned_symbol (libc, real, name, version)

	Jakub

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