* lib/localcharset.c: s/ostreq/streq/ typo.
---
lib/localcharset.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/localcharset.c b/lib/localcharset.c
index 57b9c9da4a..79a55c5efd 100644
--- a/lib/localcharset.c
+++ b/lib/localcharset.c
@@ -1113,7 +1113,7 @@ locale_charset (void)
#ifdef DARWIN7
/* Mac OS X sets MB_CUR_MAX to 1 when LC_ALL=C, and "UTF-8"
(the default codeset) does not work when MB_CUR_MAX is 1. */
- if (ostreq (codeset, "UTF-8") && MB_CUR_MAX_L (uselocale (NULL)) <= 1)
+ if (streq (codeset, "UTF-8") && MB_CUR_MAX_L (uselocale (NULL)) <= 1)
codeset = "ASCII";
#endif
--
2.50.1