From: Denys Vlasenko Date: Wed, 30 Mar 2016 16:49:45 +0000 (+0200) Subject: udhcp: fix capitalization of two messages X-Git-Tag: 1_25_0~76 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f75a96d74c2e87d0f11995466683b0bf316b9973;p=oweals%2Fbusybox.git udhcp: fix capitalization of two messages Signed-off-by: Denys Vlasenko --- diff --git a/networking/udhcp/common.c b/networking/udhcp/common.c index 1c1863451..0cf4dab63 100644 --- a/networking/udhcp/common.c +++ b/networking/udhcp/common.c @@ -257,7 +257,7 @@ uint8_t* FAST_FUNC udhcp_get_option(struct dhcp_packet *packet, int code) continue; /* complain and return NULL */ if (optionptr[OPT_CODE] == code) { - log_option("Option found", optionptr); + log_option("option found", optionptr); return optionptr + OPT_DATA; } @@ -303,7 +303,7 @@ void FAST_FUNC udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addo addopt[OPT_CODE]); return; } - log_option("Adding option", addopt); + log_option("adding option", addopt); memcpy(optionptr + end, addopt, len); optionptr[end + len] = DHCP_END; }