mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use ntohs() and htons() in correct order. However, this doesn't change
functionality.
This commit is contained in:
parent
b3d9795c98
commit
09c1c8563a
1 changed files with 1 additions and 1 deletions
|
|
@ -6821,7 +6821,7 @@ sctp_recv_udp_tunneled_packet(struct mbuf *m, int off, struct inpcb *ignored)
|
|||
switch (iph->ip_v) {
|
||||
#ifdef INET
|
||||
case IPVERSION:
|
||||
iph->ip_len = ntohs(htons(iph->ip_len) - sizeof(struct udphdr));
|
||||
iph->ip_len = htons(ntohs(iph->ip_len) - sizeof(struct udphdr));
|
||||
sctp_input_with_port(m, off, port);
|
||||
break;
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue