From: J William Piggott Date: Wed, 20 Sep 2017 22:54:35 +0000 (-0400) Subject: hwclock: make debug implicit for test mode. X-Git-Tag: v2.31-rc1~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f0a0ce744573bc3b3164062bc25e8fc6ddc7d9b9;p=thirdparty%2Futil-linux.git hwclock: make debug implicit for test mode. Calling --test without --debug is not useful, so make it implicit. Signed-off-by: J William Piggott --- diff --git a/sys-utils/hwclock.8.in b/sys-utils/hwclock.8.in index a3cbc015e6..d88feb07b3 100644 --- a/sys-utils/hwclock.8.in +++ b/sys-utils/hwclock.8.in @@ -372,10 +372,10 @@ must be specified when using this option. . .TP .B \-\-test -Do not actually change anything on the system, i.e., the Clocks or -adjtime file. This is useful, especially in conjunction with -.BR \%\-\-debug , -in learning about the internal operations of hwclock. +Do not actually change anything on the system, that is, the Clocks or +.I @ADJTIME_PATH@ +.RB ( \%\-\-debug +is implicit with this option). . .TP .B \-\-update\-drift diff --git a/sys-utils/hwclock.c b/sys-utils/hwclock.c index 6a23bf2b0c..36b6204b01 100644 --- a/sys-utils/hwclock.c +++ b/sys-utils/hwclock.c @@ -1083,7 +1083,7 @@ usage(void) " --noadjfile do not use %1$s\n"), _PATH_ADJTIME); printf(_( " --adjfile use an alternate file to %1$s\n"), _PATH_ADJTIME); - puts(_(" --test dry run; use -D to view what would have happened")); + puts(_(" --test dry run; implies --debug")); puts(_(" -D, --debug display more details")); fputs(USAGE_SEPARATOR, stdout); printf(USAGE_HELP_OPTIONS(22)); @@ -1251,6 +1251,7 @@ int main(int argc, char **argv) break; case OPT_TEST: ctl.testing = 1; /* --test */ + ctl.debug++; break; case OPT_DATE: ctl.date_opt = optarg; /* --date */