diff options
author | Denys Vlasenko | 2019-05-31 23:51:07 +0200 |
---|---|---|
committer | Denys Vlasenko | 2019-05-31 23:52:16 +0200 |
commit | 6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2 (patch) | |
tree | a950b90ed615ba17e6f9687d8bbacd8829565a23 /networking/udhcp/dhcpc.c | |
parent | 65c34c52df3ed46f0b811d1858c271a373ab6af5 (diff) | |
download | busybox-6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2.zip busybox-6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2.tar.gz |
dhcp: downgrade "got raw socket fd" message to log3, make log2 default max
log3 messages are very much redundant
function old new delta
change_listen_mode 322 302 -20
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp/dhcpc.c')
-rw-r--r-- | networking/udhcp/dhcpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index f040e93..739870b 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -1017,7 +1017,7 @@ static int udhcp_raw_socket(int ifindex) * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) * ETH_P_IP: want to receive only packets with IPv4 eth type */ - log2("got raw socket fd"); + log3("got raw socket fd %d", fd); memset(&sock, 0, sizeof(sock)); /* let's be deterministic */ sock.sll_family = AF_PACKET; |