From 600424f36d056388eab2c5fa9df1eaa79bc686b2 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Tue, 19 Oct 2010 22:21:21 +0200 Subject: [PATCH 1/2] md5sum: make the options --warn and --quiet orthogonal * src/md5sum.c (main): Allow --warn and --quiet to both be true; the most useful combination when checking a long list of files. --- src/md5sum.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/src/md5sum.c b/src/md5sum.c index a660e3b..0b8a20e 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -646,11 +646,9 @@ main (int argc, char **argv) case 'w': status_only = false; warn = true; - quiet = false; break; case QUIET_OPTION: status_only = false; - warn = false; quiet = true; break; case_GETOPT_HELP_CHAR; -- 1.6.3.3