@@ -, +, @@ local time --- init.d/hwclock.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/init.d/hwclock.in +++ a/init.d/hwclock.in @@ -94,12 +94,12 @@ start() "$utc_cmd" != --utc -o \ -n "$clock_args" ]; then + _hwclock --systz $utc_cmd $clock_args + : $(( retval += $? )) if yesno ${clock_hctosys:-YES}; then _hwclock --hctosys $utc_cmd $clock_args + : $(( retval += $? )) else - _hwclock --systz $utc_cmd $clock_args - fi - : $(( retval += $? )) fi eend $retval "Failed to set the system clock" --