From 5f078c3286c177a4d66ad89e7b3930e2d6132586 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 8 Nov 2011 09:26:08 -0500 Subject: Use strcasecmp_l instead of strcasecmp --- intl/localealias.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intl') diff --git a/intl/localealias.c b/intl/localealias.c index 735107abd3..6f5fa12495 100644 --- a/intl/localealias.c +++ b/intl/localealias.c @@ -1,5 +1,5 @@ /* Handle aliases for locale names. - Copyright (C) 1995-2002, 2003, 2005 Free Software Foundation, Inc. + Copyright (C) 1995-2002, 2003, 2005, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -64,7 +64,7 @@ char *alloca (); /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ -# define strcasecmp __strcasecmp +# define strcasecmp(s1, s2) __strcasecmp_l (s1, s2, _nl_C_locobj_ptr) # ifndef mempcpy # define mempcpy __mempcpy -- cgit v1.2.3