summaryrefslogtreecommitdiff
path: root/proto_ipv4.c
diff options
context:
space:
mode:
Diffstat (limited to 'proto_ipv4.c')
-rw-r--r--proto_ipv4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto_ipv4.c b/proto_ipv4.c
index 799040f..cefc6ba 100644
--- a/proto_ipv4.c
+++ b/proto_ipv4.c
@@ -185,7 +185,7 @@ static void ipv4_less(struct pkt_buff *pkt)
/* cut off IP options and everything that is not part of IPv4 payload */
pkt_pull(pkt, max_t(uint8_t, ip->h_ihl, sizeof(*ip) / sizeof(uint32_t))
* sizeof(uint32_t) - sizeof(*ip));
- /* XXX there coul still be an Ethernet trailer included or others */
+ /* XXX there could still be an Ethernet trailer included or others */
#if 0
pkt_trim(pkt, pkt_len(pkt) - min(pkt_len(pkt),
(ntohs(ip->h_tot_len) - ip->h_ihl * sizeof(uint32_t))));