From: Roy Marples <roy@xxxxxxxxxxxx> Every other fsck util out there supports non-interactive forcing and this change brings reiserfsck into line. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> --- fsck/main.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fsck/main.c b/fsck/main.c index 06d7bd2..cfee979 100644 --- a/fsck/main.c +++ b/fsck/main.c @@ -421,8 +421,9 @@ void warn_what_will_be_done (char * file_name, struct fsck_data * data) (data->log == stdout) ? "stdout" : (data->log_file_name ? data->log_file_name : "fsck.run")); - if (!(data->options & OPT_YES) && !user_confirmed (warn_to, "\nDo you want to " - "run this program?[N/Yes] (note need to type Yes if you do):", "Yes\n")) + if (!(data->options & OPT_YES) && !(data->options & OPT_SILENT) && + !user_confirmed (warn_to, "\nDo you want to run this program?[N/Yes] " + "(note need to type Yes if you do):", "Yes\n")) exit (EXIT_USER); } -- 1.6.1 -- To unsubscribe from this list: send the line "unsubscribe reiserfs-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html