From: Phil Sutter Date: Sat, 19 Dec 2020 01:21:44 +0000 (+0100) Subject: expr/tunnel: Kill dead code X-Git-Tag: libnftnl-1.2.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=743926643287de4bfc2a460585fc2f7ba9ce8490;p=thirdparty%2Flibnftnl.git expr/tunnel: Kill dead code Function str2tunnel_key() was never used. Fixes: 42468fb6df61a ("expr: add support for matching tunnel metadata") Signed-off-by: Phil Sutter --- diff --git a/src/expr/tunnel.c b/src/expr/tunnel.c index b2b8d724..62e16480 100644 --- a/src/expr/tunnel.c +++ b/src/expr/tunnel.c @@ -124,19 +124,6 @@ static const char *tunnel_key2str(uint8_t key) return "unknown"; } -static inline int str2tunnel_key(const char *str) -{ - int i; - - for (i = 0; i <= NFT_TUNNEL_MAX; i++) { - if (strcmp(str, tunnel_key2str_array[i]) == 0) - return i; - } - - errno = EINVAL; - return -1; -} - static int nftnl_expr_tunnel_snprintf_default(char *buf, size_t len, const struct nftnl_expr *e)