From b338244abc7f018d79a95657fff88eadee7e9f6b Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 9 Jan 2019 23:26:05 +0100 Subject: src: fix netdev family device name parsing Should use accept/use quotes, else you can't use this with a device name that is shared with a key word, e.g. 'device vm'. Signed-off-by: Florian Westphal Acked-by: Pablo Neira Ayuso --- src/rule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rule.c') diff --git a/src/rule.c b/src/rule.c index e15a20b3..73b78c75 100644 --- a/src/rule.c +++ b/src/rule.c @@ -1070,7 +1070,7 @@ static void chain_print_declaration(const struct chain *chain, nft_print(octx, "\t\ttype %s hook %s", chain->type, hooknum2str(chain->handle.family, chain->hooknum)); if (chain->dev != NULL) - nft_print(octx, " device %s", chain->dev); + nft_print(octx, " device \"%s\"", chain->dev); nft_print(octx, " priority %s; policy %s;\n", prio2str(octx, priobuf, sizeof(priobuf), chain->handle.family, chain->hooknum, -- cgit v1.2.3