aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/dhcp6.c
diff options
context:
space:
mode:
authorAntoni Villalonga i Noceras <antoni@friki.cat>2020-08-10 01:32:51 +0200
committerRob Landley <rob@landley.net>2020-08-11 07:24:28 -0500
commit98943e25c8d24423c74e4a31d70f274c78e35e51 (patch)
tree4b1fe94d65fd3902cccc9ad0077eb0ba6f747a1b /toys/pending/dhcp6.c
parentefb8060a591b6ed13c16c4034db43652e03f90d5 (diff)
downloadtoybox-98943e25c8d24423c74e4a31d70f274c78e35e51.tar.gz
Fix spelling errors
Diffstat (limited to 'toys/pending/dhcp6.c')
-rw-r--r--toys/pending/dhcp6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/dhcp6.c b/toys/pending/dhcp6.c
index 12d11553..72cda4f8 100644
--- a/toys/pending/dhcp6.c
+++ b/toys/pending/dhcp6.c
@@ -619,7 +619,7 @@ void dhcp6_main(void)
if (TT.state == DHCP6SOLICIT) {
if (mymsg->dhcp6.msgtype == DHCP6ADVERTISE ) {
if (!validate_ids()) {
- dbg("Invalid id recieved, solicit.\n");
+ dbg("Invalid id received, solicit.\n");
TT.state = DHCP6SOLICIT;
continue;
}
@@ -640,7 +640,7 @@ void dhcp6_main(void)
} else if (TT.state == DHCP6REQUEST || TT.state == DHCP6RENEW ) {
if (mymsg->dhcp6.msgtype == DHCP6REPLY) {
if (!validate_ids()) {
- dbg("Invalid id recieved, %d.\n", TT.state);
+ dbg("Invalid id received, %d.\n", TT.state);
TT.state = DHCP6REQUEST;
continue;
}