From 1cde3f7335589b9e24f447e6744925b411221649 Mon Sep 17 00:00:00 2001 From: Nick Peng Date: Fri, 9 Dec 2022 21:59:05 +0800 Subject: [PATCH] nftset: fix domain-rule for nftset short option missing issue. --- src/dns_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dns_conf.c b/src/dns_conf.c index 99e794b..d7a8bc5 100644 --- a/src/dns_conf.c +++ b/src/dns_conf.c @@ -1872,7 +1872,7 @@ static int _conf_domain_rules(void *data, int argc, char *argv[]) /* process extra options */ optind = 1; while (1) { - opt = getopt_long_only(argc, argv, "c:a:p:n:d:", long_options, NULL); + opt = getopt_long_only(argc, argv, "c:a:p:t:n:d:", long_options, NULL); if (opt == -1) { break; }