aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 16:22:13 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-03-30 16:22:13 +0200
commitcde1199e01aa14f1777f97cdcb7d0de2d00add80 (patch)
tree5ce6a9823bdc8fdeabbfa1706f42ac43534c631b
parent066e76befe5d39fc3451846af94cbba96747186c (diff)
downloadbusybox-w32-cde1199e01aa14f1777f97cdcb7d0de2d00add80.tar.gz
busybox-w32-cde1199e01aa14f1777f97cdcb7d0de2d00add80.tar.bz2
busybox-w32-cde1199e01aa14f1777f97cdcb7d0de2d00add80.zip
zcip: use bb_error_msg for logging, not bb_info_msg
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/zcip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/zcip.c b/networking/zcip.c
index 1d6910555..c93082619 100644
--- a/networking/zcip.c
+++ b/networking/zcip.c
@@ -176,7 +176,7 @@ static int run(char *argv[3], const char *param, uint32_t nip)
176 xsetenv("ip", addr); 176 xsetenv("ip", addr);
177 fmt -= 3; 177 fmt -= 3;
178 } 178 }
179 bb_info_msg(fmt, argv[2], argv[0], addr); 179 bb_error_msg(fmt, argv[2], argv[0], addr);
180 180
181 status = spawn_and_wait(argv + 1); 181 status = spawn_and_wait(argv + 1);
182 if (status < 0) { 182 if (status < 0) {
@@ -317,7 +317,7 @@ int zcip_main(int argc UNUSED_PARAM, char **argv)
317#if BB_MMU 317#if BB_MMU
318 bb_daemonize(0 /*was: DAEMON_CHDIR_ROOT*/); 318 bb_daemonize(0 /*was: DAEMON_CHDIR_ROOT*/);
319#endif 319#endif
320 bb_info_msg("start, interface %s", argv_intf); 320 bb_error_msg("start, interface %s", argv_intf);
321 } 321 }
322 322
323 // Run the dynamic address negotiation protocol, 323 // Run the dynamic address negotiation protocol,