udhcp: fix capitalization of two messages
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 30 Mar 2016 16:49:45 +0000 (18:49 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 30 Mar 2016 16:49:45 +0000 (18:49 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
networking/udhcp/common.c

index 1c186345156f7a0578d2d5ecad314bb456d2db45..0cf4dab63c559c4d1ad718d2172cfc7780e166a9 100644 (file)
@@ -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;
 }