aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/d6_dhcpc.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2019-05-31 23:51:07 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-05-31 23:52:16 +0200
commit6eb6e6a1e9d6e7d4dd154014ce404ec1c8175fb2 (patch)
treea950b90ed615ba17e6f9687d8bbacd8829565a23 /networking/udhcp/d6_dhcpc.c
parent65c34c52df3ed46f0b811d1858c271a373ab6af5 (diff)
downloadbusybox-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/d6_dhcpc.c')
-rw-r--r--networking/udhcp/d6_dhcpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c
index 02766ba16..422b88882 100644
--- a/networking/udhcp/d6_dhcpc.c
+++ b/networking/udhcp/d6_dhcpc.c
@@ -981,7 +981,7 @@ static int d6_raw_socket(int ifindex)
log2("opening raw socket on ifindex %d", ifindex);
fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6));
- log2("got raw socket fd %d", fd);
+ log3("got raw socket fd %d", fd);
memset(&sock, 0, sizeof(sock)); /* let's be deterministic */
sock.sll_family = AF_PACKET;