diff options
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)) { |