From b2eaec6671ff7ff44bb2f93881ad30e6d6ba0d24 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 9 Nov 2015 15:40:47 +0100 Subject: csum: Remove unused parameter from calc_csum() The `ccsum' parameter to calc_csum() is never used and is set to 0 by all callers. There's no reason to keep it, so remove it. Signed-off-by: Tobias Klauser --- proto_ipv4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proto_ipv4.c') diff --git a/proto_ipv4.c b/proto_ipv4.c index cefc6ba..9b9e915 100644 --- a/proto_ipv4.c +++ b/proto_ipv4.c @@ -48,7 +48,7 @@ static void ipv4(struct pkt_buff *pkt) frag_off = ntohs(ip->h_frag_off); h_tot_len = ntohs(ip->h_tot_len); - csum = calc_csum(ip, ip->h_ihl * 4, 0); + csum = calc_csum(ip, ip->h_ihl * 4); inet_ntop(AF_INET, &ip->h_saddr, src_ip, sizeof(src_ip)); inet_ntop(AF_INET, &ip->h_daddr, dst_ip, sizeof(dst_ip)); -- cgit v1.2.3-54-g00ecf