[PATCH nf-next 3/4] netfilter: nf_nat_amanda: replace u_int16_t with u16
Carlos Grillet <[email protected]>
| Newsgroups | gmane.comp.security.firewalls.netfilter.devel,gmane.linux.network,gmane.linux.kernel |
|---|---|
| Message-ID | <[email protected]> |
Use preferred kernel integer type u16 instead of the POSIX u_int16_t variant. No functional change. Signed-off-by: Carlos Grillet <[email protected]> --- net/netfilter/nf_nat_amanda.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/netfilter/nf_nat_amanda.c b/net/netfilter/nf_nat_amanda.c index 8f1054920a85..fe054cb4fc0b 100644 --- a/net/netfilter/nf_nat_amanda.c +++ b/net/netfilter/nf_nat_amanda.c @@ -33,7 +33,7 @@ static unsigned int help(struct sk_buff *skb, struct nf_conntrack_expect *exp) { char buffer[sizeof("65535")]; - u_int16_t port; + u16 port; /* Connection comes from client. */ exp->saved_proto.tcp.port = exp->tuple.dst.u.tcp.port; -- 2.55.0