Commit fc46d57d626e32c20f4791de1edd0d80b0c6d46d

Con Kolivas 2011-08-28T22:45:33

Return -1 if no input is detected from the menu to prevent it being interpreted as a 0.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/main.c b/main.c
index 1540950..ff8220e 100644
--- a/main.c
+++ b/main.c
@@ -4309,6 +4309,8 @@ static char *curses_input(const char *query)
 	leaveok(logwin, false);
 	wlogprint("%s: ", query);
 	wgetnstr(logwin, input, 255);
+	if (!strlen(input))
+		strcpy(input, "-1");
 	leaveok(logwin, true);
 	noecho();
 	return input;