svn commit: trunk/busybox/miscutils

vda at busybox.net vda at busybox.net
Wed Mar 14 23:00:27 UTC 2007


Author: vda
Date: 2007-03-14 16:00:26 -0700 (Wed, 14 Mar 2007)
New Revision: 18115

Log:
adjtimex: fix argument types (most importantly, allow negative ones)


Modified:
   trunk/busybox/miscutils/adjtimex.c


Changeset:
Modified: trunk/busybox/miscutils/adjtimex.c
===================================================================
--- trunk/busybox/miscutils/adjtimex.c	2007-03-14 22:55:39 UTC (rev 18114)
+++ trunk/busybox/miscutils/adjtimex.c	2007-03-14 23:00:26 UTC (rev 18115)
@@ -55,19 +55,19 @@
 			&opt_o, &opt_f, &opt_p, &opt_t);
 	//if (opt & 0x1) // -q
 	if (opt & 0x2) { // -o
-		txc.offset = xatoi(opt_o);
+		txc.offset = xatol(opt_o);
 		txc.modes |= ADJ_OFFSET_SINGLESHOT;
 	}
 	if (opt & 0x4) { // -f
-		txc.freq = xatou(opt_f);
+		txc.freq = xatol(opt_f);
 		txc.modes |= ADJ_FREQUENCY;
 	}
 	if (opt & 0x8) { // -p
-		txc.constant = xatoi(opt_p);
+		txc.constant = xatol(opt_p);
 		txc.modes |= ADJ_TIMECONST;
 	}
 	if (opt & 0x10) { // -t
-		txc.tick = xatoi(opt_t);
+		txc.tick = xatol(opt_t);
 		txc.modes |= ADJ_TICK;
 	}
 	if (argc != optind) { /* no valid non-option parameters */




More information about the busybox-cvs mailing list