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]
Other format: [Raw text]

[PATCH] Fix libnsl.so ABI issue


Hi!

Due to typo, nis_domain_of_r stopped being exported from libnsl.so.
Fixed thusly.

2004-12-15  Jakub Jelinek  <jakub@redhat.com>

	* nis/nis_domain_of_r.c (nis_domain_of_r): Use libnsl_hidden_def,
	not libnsl_hidden_proto.

--- libc/nis/nis_domain_of_r.c.jj	2004-11-01 13:25:30.000000000 +0100
+++ libc/nis/nis_domain_of_r.c	2004-12-15 17:08:22.350059309 +0100
@@ -54,4 +54,4 @@ nis_domain_of_r (const_nis_name name, ch
 
   return memcpy (buffer, cptr, cptr_len + 1);
 }
-libnsl_hidden_proto (nis_domain_of_r)
+libnsl_hidden_def (nis_domain_of_r)

	Jakub


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