From a95f6dd44e7f9ec01ba6b6a663b931cfccb30100 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Tue, 16 Jun 2020 09:00:17 +0200 Subject: [PATCH] net: bootp: silence messages about unhandled DHCP options --- net/bootp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bootp.c b/net/bootp.c index 53f83626e1..44917e4807 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -863,8 +863,8 @@ static void dhcp_process_options(uchar *popt, struct bootp_hdr *bp) if (dhcp_vendorex_proc(popt)) break; #endif - printf("*** Unhandled DHCP Option in OFFER/ACK:" - " %d\n", *popt); + debug("*** Unhandled DHCP Option in OFFER/ACK: %d\n", + *popt); break; } popt += oplen + 2; /* Process next option */ -- 2.39.2