'Q' means ignore parse error, not 'q'

This commit is contained in:
Todd C. Miller
2000-12-15 04:10:54 +00:00
parent 02559d3447
commit f14cf7973d

View File

@@ -402,7 +402,7 @@ main(argc, argv)
*/
if (parse_error == TRUE) {
switch (whatnow()) {
case 'q' : parse_error = FALSE; /* ignore parse error */
case 'Q' : parse_error = FALSE; /* ignore parse error */
break;
case 'x' : Exit(0);
break;