diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /networking/udhcp/dhcpc.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.gz busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.bz2 busybox-w32-1385899416a4396385ad421ae1f532be7103738a.zip |
attempt to regularize atoi mess.
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r-- | networking/udhcp/dhcpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 9ab6aee8c..f2cf82f05 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c | |||
@@ -262,10 +262,10 @@ int udhcpc_main(int argc, char *argv[]) | |||
262 | client_config.script = optarg; | 262 | client_config.script = optarg; |
263 | break; | 263 | break; |
264 | case 'T': | 264 | case 'T': |
265 | client_config.timeout = atoi(optarg); | 265 | client_config.timeout = xatoi_u(optarg); |
266 | break; | 266 | break; |
267 | case 't': | 267 | case 't': |
268 | client_config.retries = atoi(optarg); | 268 | client_config.retries = xatoi_u(optarg); |
269 | break; | 269 | break; |
270 | case 'v': | 270 | case 'v': |
271 | printf("version %s\n\n", BB_VER); | 271 | printf("version %s\n\n", BB_VER); |