This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


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

[PATCH] Fix Versions bracing


Hi,

while hunting a abi-versions.h misgeneration (which turned out to be a 
tradcpp bug) I noticed that some Versions files were misbraced.
The patch fixes that. I feel a bit curious that this situation is not 
detected, it looks like a possible source of subtle bugs. There maybe other 
files with the same problem, these are the ones I found by visually 
inspecting the generated Versions.all

Franz.

	* resolv/Versions: Fix bracing.
	* sysdeps/powerpc/soft-fp/Versions: Likewise.

Index: resolv/Versions
===================================================================
RCS file: /cvs/glibc/libc/resolv/Versions,v
retrieving revision 1.6
diff -u -p -r1.6 Versions
--- resolv/Versions	2000/07/23 09:06:28	1.6
+++ resolv/Versions	2001/01/03 17:00:46
@@ -56,6 +56,7 @@ libresolv {
     __res_hostalias; __res_mkquery; __res_nmkquery; __res_nquery;
     __res_nquerydomain; __res_nsearch; __res_nsend; __res_query;
     __res_querydomain; __res_search;
+  }
 }
 
 libnss_dns {
Index: sysdeps/powerpc/soft-fp/Versions
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/powerpc/soft-fp/Versions,v
retrieving revision 1.1
diff -u -p -r1.1 Versions
--- sysdeps/powerpc/soft-fp/Versions	2000/09/05 08:32:06	1.1
+++ sysdeps/powerpc/soft-fp/Versions	2001/01/03 17:00:46
@@ -4,5 +4,6 @@ libc {
     _q_fle; _q_flt; _q_fne; _q_itoq; _q_mul; _q_neg; _q_qtod; _q_qtoi;
     _q_qtos; _q_qtou; _q_sqrt; _q_stoq; _q_sub;
     _q_utoq; 
-    _q_lltoq; _q_qtoll; _q_qtoull; _q_ulltoq; 
+    _q_lltoq; _q_qtoll; _q_qtoull; _q_ulltoq;
+  }
 }

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