about summary refs log tree commit diff
path: root/locale/nl_langinfo.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-04 02:32:32 +0000
committerRoland McGrath <roland@gnu.org>2002-08-04 02:32:32 +0000
commitdc18d4d8e4bac967ff29853d2d8cab191d82d535 (patch)
tree7bea3a9b85ee2162f186725b3665168a9ff42052 /locale/nl_langinfo.c
parent30c14c31ae6ac7c8db692fc23d0901e4d479f7af (diff)
downloadglibc-dc18d4d8e4bac967ff29853d2d8cab191d82d535.tar.gz
glibc-dc18d4d8e4bac967ff29853d2d8cab191d82d535.tar.xz
glibc-dc18d4d8e4bac967ff29853d2d8cab191d82d535.zip
* locale/nl_langinfo.c: Use _NL_CURRENT_DATA.
	* elf/Makefile (CFLAGS-vismod2.c): New variable.
Diffstat (limited to 'locale/nl_langinfo.c')
-rw-r--r--locale/nl_langinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/nl_langinfo.c b/locale/nl_langinfo.c
index 7b62c73c63..acaa50046e 100644
--- a/locale/nl_langinfo.c
+++ b/locale/nl_langinfo.c
@@ -1,5 +1,5 @@
 /* User interface for extracting locale-dependent parameters.
-   Copyright (C) 1995,1996,1997,1999,2000,2001 Free Software Foundation, Inc.
+   Copyright (C) 1995,96,97,99,2000,01,02 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
@@ -48,7 +48,7 @@ nl_langinfo (item)
 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
   data = l->__locales[category];
 #else
-  data = *_nl_current[category];
+  data = _NL_CURRENT_DATA (category);
 #endif
 
   if (index >= data->nstrings)