Patch from Thomas Frohlich to fix an option ordering bug of mine.
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c
index e62a645..e089b1d 100644
--- a/util-linux/hwclock.c
+++ b/util-linux/hwclock.c
@@ -183,9 +183,9 @@
}
#define HWCLOCK_OPT_LOCALTIME 1
-#define HWCLOCK_OPT_UTC 8
-#define HWCLOCK_OPT_SHOW 2
-#define HWCLOCK_OPT_HCTOSYS 4
+#define HWCLOCK_OPT_UTC 2
+#define HWCLOCK_OPT_SHOW 4
+#define HWCLOCK_OPT_HCTOSYS 8
#define HWCLOCK_OPT_SYSTOHC 16
extern int hwclock_main ( int argc, char **argv )