diff options
Diffstat (limited to 'networking/zcip.c')
-rw-r--r-- | networking/zcip.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/zcip.c b/networking/zcip.c index 635d660b3..a3307c5c9 100644 --- a/networking/zcip.c +++ b/networking/zcip.c @@ -33,6 +33,9 @@ //usage: "\n -l x.x.0.0 Use this range instead of 169.254" //usage: "\n -v Verbose" //usage: "\n" +//usage: "\n$LOGGING=none Suppress logging" +//usage: "\n$LOGGING=syslog Log to syslog" +//usage: "\n" //usage: "\nWith no -q, runs continuously monitoring for ARP conflicts," //usage: "\nexits only on I/O errors (link down etc)" @@ -249,6 +252,8 @@ int zcip_main(int argc UNUSED_PARAM, char **argv) openlog(applet_name, 0, LOG_DAEMON); logmode |= LOGMODE_SYSLOG; } + bb_logenv_override(); + { // -l n.n.n.n struct in_addr net; if (inet_aton(l_opt, &net) == 0 |