diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 17:06:01 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-10-07 17:06:01 +0000 |
commit | def88985966a9351911844d42e06b735977bcb72 (patch) | |
tree | 99059022fef92213ec7f7adf7b80822f307bf38e /networking/udhcp/dhcpc.c | |
parent | 76a6b236a9e2654e8c296c61cf71e0cf8bf4a64c (diff) | |
download | busybox-w32-def88985966a9351911844d42e06b735977bcb72.tar.gz busybox-w32-def88985966a9351911844d42e06b735977bcb72.tar.bz2 busybox-w32-def88985966a9351911844d42e06b735977bcb72.zip |
reviving libbusybox, adding CONFIG_INDIVIDUAL part 3
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 ca478b3c5..21b496c0b 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c | |||
@@ -260,7 +260,7 @@ int udhcpc_main(int argc, char **argv) | |||
260 | if (opt & OPT_t) | 260 | if (opt & OPT_t) |
261 | client_config.retries = xatoi_u(str_t); | 261 | client_config.retries = xatoi_u(str_t); |
262 | if (opt & OPT_v) { | 262 | if (opt & OPT_v) { |
263 | printf("version %s\n", BB_VER); | 263 | puts("version "BB_VER); |
264 | return 0; | 264 | return 0; |
265 | } | 265 | } |
266 | 266 | ||
@@ -283,7 +283,7 @@ int udhcpc_main(int argc, char **argv) | |||
283 | /* if (!..) bb_perror_msg("cannot create pidfile %s", pidfile); */ | 283 | /* if (!..) bb_perror_msg("cannot create pidfile %s", pidfile); */ |
284 | 284 | ||
285 | /* Goes to stdout and possibly syslog */ | 285 | /* Goes to stdout and possibly syslog */ |
286 | bb_info_msg("%s (v%s) started", applet_name, BB_VER); | 286 | bb_info_msg("%s (v"BB_VER") started", applet_name); |
287 | 287 | ||
288 | /* if not set, and not suppressed, setup the default client ID */ | 288 | /* if not set, and not suppressed, setup the default client ID */ |
289 | if (!client_config.clientid && !(opt & OPT_C)) { | 289 | if (!client_config.clientid && !(opt & OPT_C)) { |