diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-31 23:51:07 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-05-31 23:52:16 +0200 |
commit | 6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2 (patch) | |
tree | a950b90ed615ba17e6f9687d8bbacd8829565a23 /networking/udhcp/dhcpc.c | |
parent | 65c34c52df3ed46f0b811d1858c271a373ab6af5 (diff) | |
download | busybox-w32-6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2.tar.gz busybox-w32-6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2.tar.bz2 busybox-w32-6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2.zip |
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 f040e93f7..739870bee 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c | |||
@@ -1017,7 +1017,7 @@ static int udhcp_raw_socket(int ifindex) | |||
1017 | * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) | 1017 | * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) |
1018 | * ETH_P_IP: want to receive only packets with IPv4 eth type | 1018 | * ETH_P_IP: want to receive only packets with IPv4 eth type |
1019 | */ | 1019 | */ |
1020 | log2("got raw socket fd"); | 1020 | log3("got raw socket fd %d", fd); |
1021 | 1021 | ||
1022 | memset(&sock, 0, sizeof(sock)); /* let's be deterministic */ | 1022 | memset(&sock, 0, sizeof(sock)); /* let's be deterministic */ |
1023 | sock.sll_family = AF_PACKET; | 1023 | sock.sll_family = AF_PACKET; |