The utc variable was not modified according to the -u/-l command line

parameters.
This commit is contained in:
Robert Griebl 2004-03-21 18:01:46 +00:00
parent bfb51574ae
commit c8685ead57

View File

@ -213,7 +213,13 @@ static const struct option hwclock_long_options[] = {
}
/* If -u or -l wasnt give check if we are using utc */
if ((opt & (HWCLOCK_OPT_UTC | HWCLOCK_OPT_LOCALTIME)) == 0) {
if (opt & HWCLOCK_OPT_UTC) {
utc = 1;
}
else if (opt & HWCLOCK_OPT_LOCALTIME) {
utc = 0;
}
else {
utc = check_utc();
}