diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-07-20 23:46:15 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-07-20 23:46:15 -0400 |
commit | 49fa21d023feb89e236ad4d655d96dde3574560e (patch) | |
tree | 83ad421695a488680315847c76558d7d2d88049c /util.c | |
parent | bcbdf3f2c90897769394d6d0d23e7714ec471d4f (diff) | |
download | bfs-49fa21d023feb89e236ad4d655d96dde3574560e.tar.xz |
main: Call setlocale() at startup to use the system locale
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -373,6 +373,16 @@ static int xrpmatch(const char *response) { ret = xrpregex(YESEXPR, response); if (ret == 0) { return 1; + } else if (ret != REG_NOMATCH) { + return -1; + } + + // Failsafe: always handle y/n + char c = response[0]; + if (c == 'n' || c == 'N') { + return 0; + } else if (c == 'y' || c == 'Y') { + return 1; } else { return -1; } |