[git commit] udhcpc: downgrade "MAC X:X:X:X:X:X" message to log2 level

Denys Vlasenko vda.linux at googlemail.com
Mon Jul 24 11:37:38 UTC 2017


commit: https://git.busybox.net/busybox/commit/?id=c810978552bc0133ba723ababaa178c8d53256e1
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/udhcp/socket.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/networking/udhcp/socket.c b/networking/udhcp/socket.c
index ec6a1dc..34049c3 100644
--- a/networking/udhcp/socket.c
+++ b/networking/udhcp/socket.c
@@ -66,7 +66,7 @@ int FAST_FUNC udhcp_read_interface(const char *interface, int *ifindex, uint32_t
 			return -1;
 		}
 		memcpy(mac, ifr->ifr_hwaddr.sa_data, 6);
-		log1("MAC %02x:%02x:%02x:%02x:%02x:%02x",
+		log2("MAC %02x:%02x:%02x:%02x:%02x:%02x",
 			mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
 	}
 


More information about the busybox-cvs mailing list