[BusyBox-cvs] busybox/util-linux hwclock.c,1.8,1.9

Glenn McGrath bug1 at busybox.net
Wed Mar 10 10:47:40 UTC 2004


Update of /var/cvs/busybox/util-linux
In directory nail:/tmp/cvs-serv18604/util-linux

Modified Files:
	hwclock.c 
Log Message:
Patch from Thomas Frohlich to fix an option ordering bug of mine. 



Index: hwclock.c
===================================================================
RCS file: /var/cvs/busybox/util-linux/hwclock.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- a/hwclock.c	22 Feb 2004 09:11:33 -0000	1.8
+++ b/hwclock.c	10 Mar 2004 10:47:37 -0000	1.9
@@ -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 )




More information about the busybox-cvs mailing list