projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
16efe19
)
udhcp: fix capitalization of two messages
author
Denys Vlasenko
<vda.linux@googlemail.com>
Wed, 30 Mar 2016 16:49:45 +0000
(18:49 +0200)
committer
Denys 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
patch
|
blob
|
history
diff --git
a/networking/udhcp/common.c
b/networking/udhcp/common.c
index 1c186345156f7a0578d2d5ecad314bb456d2db45..0cf4dab63c559c4d1ad718d2172cfc7780e166a9 100644
(file)
--- 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("
O
ption found", optionptr);
+ log_option("
o
ption 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("
A
dding option", addopt);
+ log_option("
a
dding option", addopt);
memcpy(optionptr + end, addopt, len);
optionptr[end + len] = DHCP_END;
}