about summary refs log tree commit diff
path: root/src/locale/wcscoll.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-07-02 21:46:41 -0400
committerRich Felker <dalias@aerifal.cx>2014-07-02 21:46:41 -0400
commit4c48501ee2a022a0dd207a2db4d346a00f9927a1 (patch)
tree59167ab2975dfdf087be1033c72cd591f4c6e1f0 /src/locale/wcscoll.c
parent7424ac58b1f47adb03de55de5998c530aee91551 (diff)
downloadmusl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.tar.gz
musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.tar.xz
musl-4c48501ee2a022a0dd207a2db4d346a00f9927a1.zip
properly pass current locale to *_l functions when used internally
this change is presently non-functional since the callees do not yet
use their locale argument for anything.
Diffstat (limited to 'src/locale/wcscoll.c')
-rw-r--r--src/locale/wcscoll.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/locale/wcscoll.c b/src/locale/wcscoll.c
index 20a60900..14bb8b9f 100644
--- a/src/locale/wcscoll.c
+++ b/src/locale/wcscoll.c
@@ -1,5 +1,6 @@
 #include <wchar.h>
 #include <locale.h>
+#include "locale_impl.h"
 #include "libc.h"
 
 /* FIXME: stub */
@@ -10,7 +11,7 @@ int __wcscoll_l(const wchar_t *l, const wchar_t *r, locale_t locale)
 
 int wcscoll(const wchar_t *l, const wchar_t *r)
 {
-	return __wcscoll_l(l, r, 0);
+	return __wcscoll_l(l, r, CURRENT_LOCALE);
 }
 
 weak_alias(__wcscoll_l, wcscoll_l);