From: Kalev Soikonen Date: Sun, 27 Jul 2008 23:13:53 +0000 (+0300) Subject: hwclock: unshadow a diagnostic printf X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92eb8bb36a377f151a25a0d814473f5f263a2cde;p=util-linux hwclock: unshadow a diagnostic printf - Bogus if test means one message is never produced. - Avoid needless passing of a global variable (debug). The --test option flag ought to be a global as well (and perhaps -n/--dry-run). Signed-off-by: Kalev Soikonen --- diff --git a/hwclock/hwclock.c b/hwclock/hwclock.c index 6660a09a..3841276f 100644 --- a/hwclock/hwclock.c +++ b/hwclock/hwclock.c @@ -847,8 +847,7 @@ calculate_adjustment(const double factor, const double not_adjusted, const time_t systime, int *adjustment_p, - double *retro_p, - const int debug ) { + double *retro_p) { /*---------------------------------------------------------------------------- Do the drift adjustment calculation. @@ -988,8 +987,7 @@ do_adjustment(struct adjtime *adjtime_p, adjtime_p->last_adj_time, adjtime_p->not_adjusted, hclocktime, - &adjustment, &retro, - debug ); + &adjustment, &retro); if (adjustment > 0 || adjustment < -1) { set_hardware_clock_exact(hclocktime + adjustment, time_inc(read_time, -retro), @@ -1504,7 +1502,7 @@ main(int argc, char **argv) { permitted = TRUE; else { /* program is designed to run setuid (in some situations) */ - if (set || hctosys || systohc || adjust) { + if (set || systohc || adjust) { fprintf(stderr, _("Sorry, only the superuser can change " "the Hardware Clock.\n"));