include: fix wrong function name in the header
authorTing-Wei Lan <lantw44@gmail.com>
Sat, 7 Jun 2014 12:15:13 +0000 (20:15 +0800)
committerr.kubiak <r.kubiak@samsung.com>
Mon, 16 Nov 2015 13:12:07 +0000 (14:12 +0100)
There is no nfq_ip6hdr_snprintf(). nfq_ip6_snprintf() is the correct name.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/libnetfilter_queue/libnetfilter_queue_ipv6.h

index 36835e2..93452ce 100644 (file)
@@ -6,6 +6,6 @@ struct ip6_hdr;
 
 struct ip6_hdr *nfq_ip6_get_hdr(struct pkt_buff *pktb);
 int nfq_ip6_set_transport_header(struct pkt_buff *pktb, struct ip6_hdr *iph, uint8_t target);
-int nfq_ip6hdr_snprintf(char *buf, size_t size, const struct ip6_hdr *ip6h);
+int nfq_ip6_snprintf(char *buf, size_t size, const struct ip6_hdr *ip6h);
 
 #endif