You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
415 B
20 lines
415 B
11 years ago
|
--- a/include/common.h
|
||
|
+++ b/include/common.h
|
||
|
@@ -122,10 +122,12 @@
|
||
|
}
|
||
|
|
||
|
if (strcmp("\n", line) != 0) {
|
||
|
- switch (rpmatch(line)) {
|
||
|
- case 0: ret = false; break;
|
||
|
- case 1: ret = true; break;
|
||
|
- case -1:
|
||
|
+ switch (line[0]) {
|
||
|
+ case 'N':
|
||
|
+ case 'n': ret = false; break;
|
||
|
+ case 'Y':
|
||
|
+ case 'y': ret = true; break;
|
||
|
+ default:
|
||
|
puts("unknown response; please try again");
|
||
|
continue;
|
||
|
}
|