From 485cefd66562ddf8852aa20895062633f42ef1d0 Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Tue, 26 Aug 2014 01:09:10 +0200 Subject: [PATCH] nf: Remove unused function htonll() Signed-off-by: Thomas Graf Signed-off-by: Thomas Haller --- lib/netfilter/ct.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/netfilter/ct.c b/lib/netfilter/ct.c index 36a83db..903c584 100644 --- a/lib/netfilter/ct.c +++ b/lib/netfilter/ct.c @@ -35,19 +35,11 @@ static uint64_t ntohll(uint64_t x) { return x; } -static uint64_t htonll(uint64_t x) -{ - return x; -} #elif __BYTE_ORDER == __LITTLE_ENDIAN static uint64_t ntohll(uint64_t x) { return bswap_64(x); } -static uint64_t htonll(uint64_t x) -{ - return bswap_64(x); -} #endif static struct nla_policy ct_policy[CTA_MAX+1] = {