diff options
author | Damien Miller <djm@mindrot.org> | 2017-03-20 02:07:20 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-03-20 02:07:20 +0100 |
commit | db84e52fe9cfad57f22e7e23c5fbf00092385129 (patch) | |
tree | 09b6aac3ed9f9fe407dbfaefdc51cbf5972d5dce /utf8.c | |
parent | on Cygwin, check paths from server for backslashes (diff) | |
download | openssh-db84e52fe9cfad57f22e7e23c5fbf00092385129.tar.xz openssh-db84e52fe9cfad57f22e7e23c5fbf00092385129.zip |
I'm a doofus.
Unbreak obvious syntax error.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ dangerous_locale(void) { loc = nl_langinfo(CODESET); return strcmp(loc, "US-ASCII") != 0 && strcmp(loc, "UTF-8") != 0 && - strcmp(loc, "ANSI_X3.4-1968") != 0 strcmp(loc, "646") != 0; + strcmp(loc, "ANSI_X3.4-1968") != 0 && strcmp(loc, "646") != 0; } static int |