aboutsummaryrefslogtreecommitdiff
path: root/net/siit
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2016-03-26 11:53:07 +0100
committerStefan Weil <sw@weilnetz.de>2016-04-10 12:51:10 +0200
commit6d2c0fd06ffa2d12ab1a1bf156784e6949a903a1 (patch)
tree5a86c41f2f8ebec1d85f97aaead41123a28954ae /net/siit
parentc48f8a318a064fbd557b9e30b2fd5b1ed6588945 (diff)
net: Fix typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'net/siit')
-rw-r--r--net/siit/src/siit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/siit/src/siit.c b/net/siit/src/siit.c
index a25da9a9e..ea68b7451 100644
--- a/net/siit/src/siit.c
+++ b/net/siit/src/siit.c
@@ -690,7 +690,7 @@ static int ip6_ip4(char *src, int len, char *dst, int include_flag)
}
else if (next_hdr == NEXTHDR_ESP || next_hdr == NEXTHDR_AUTH)
{
- PDEBUG("ip6_ip4(): cannot translate AUTH or ESP extention header, packet dropped\n");
+ PDEBUG("ip6_ip4(): cannot translate AUTH or ESP extension header, packet dropped\n");
return -1;
}
else if (next_hdr == NEXTHDR_IPV6)
@@ -707,12 +707,12 @@ static int ip6_ip4(char *src, int len, char *dst, int include_flag)
value within the original packet
*/
/* NOT IMPLEMENTED */
- PDEBUG("ip6_ip4(): NEXTHDR in extention header = 0, packet dropped\n");
+ PDEBUG("ip6_ip4(): NEXTHDR in extension header = 0, packet dropped\n");
return -1;
}
else
{
- PDEBUG("ip6_ip4(): cannot translate extention header = %d, packet dropped\n", next_hdr);
+ PDEBUG("ip6_ip4(): cannot translate extension header = %d, packet dropped\n", next_hdr);
return -1;
}
}