summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2017-03-20 12:07:20 +1100
committerDamien Miller <djm@mindrot.org>2017-03-20 12:07:20 +1100
commitdb84e52fe9cfad57f22e7e23c5fbf00092385129 (patch)
tree09b6aac3ed9f9fe407dbfaefdc51cbf5972d5dce /utf8.c
parent89f04852db27643717c9c3a2b0dde97ae50099ee (diff)
I'm a doofus.
Unbreak obvious syntax error.
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index d38902032..dead79b8a 100644
--- a/utf8.c
+++ b/utf8.c
@@ -61,7 +61,7 @@ dangerous_locale(void) {
61 61
62 loc = nl_langinfo(CODESET); 62 loc = nl_langinfo(CODESET);
63 return strcmp(loc, "US-ASCII") != 0 && strcmp(loc, "UTF-8") != 0 && 63 return strcmp(loc, "US-ASCII") != 0 && strcmp(loc, "UTF-8") != 0 &&
64 strcmp(loc, "ANSI_X3.4-1968") != 0 strcmp(loc, "646") != 0; 64 strcmp(loc, "ANSI_X3.4-1968") != 0 && strcmp(loc, "646") != 0;
65} 65}
66 66
67static int 67static int