summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'util.c')
-rw-r--r--util.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/util.c b/util.c
index 81eeda0..0d7e17d 100644
--- a/util.c
+++ b/util.c
@@ -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;
}