[Glibc-bsd-commits] r1394 - trunk/libbsd/src

Aurelien Jarno aurel32 at costa.debian.org
Sun Mar 26 17:09:25 UTC 2006


Author: aurel32
Date: 2006-03-26 17:09:24 +0000 (Sun, 26 Mar 2006)
New Revision: 1394

Modified:
   trunk/libbsd/src/fmtcheck.c
Log:
Directly call the function fmtcheck instead of using __weak_reference



Modified: trunk/libbsd/src/fmtcheck.c
===================================================================
--- trunk/libbsd/src/fmtcheck.c	2006-03-25 20:04:56 UTC (rev 1393)
+++ trunk/libbsd/src/fmtcheck.c	2006-03-26 17:09:24 UTC (rev 1394)
@@ -41,7 +41,7 @@
 #include <string.h>
 #include <ctype.h>
 
-__weak_reference(__fmtcheck, fmtcheck);
+/* __weak_reference(__fmtcheck, fmtcheck); */
 
 enum __e_fmtcheck_types {
 	FMTCHECK_START,
@@ -245,7 +245,7 @@
 }
 
 __const char *
-__fmtcheck(const char *f1, const char *f2)
+fmtcheck(const char *f1, const char *f2)
 {
 	const char	*f1p, *f2p;
 	EFT		f1t, f2t;




More information about the Glibc-bsd-commits mailing list