diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-12-15 04:10:14 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-12-15 04:10:14 +0000 |
commit | e6f8f42f94d07fe85c69302bf97476f3d649cf97 (patch) | |
tree | ed6804d9078d3ca56bdfbbfb565e7136d64f054f /usr.bin | |
parent | 10bf6411d6cdf48c0e538eff57643a8e6fe55330 (diff) |
'Q' means ignore parse error, not 'q'
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/sudo/visudo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/sudo/visudo.c b/usr.bin/sudo/visudo.c index 22ff892e3cd..4117615b137 100644 --- a/usr.bin/sudo/visudo.c +++ b/usr.bin/sudo/visudo.c @@ -308,7 +308,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; |