From: Jeremy Sowden Date: Thu, 20 Jan 2022 10:54:05 +0000 (+0000) Subject: extensions: libxt_NFLOG: fix typo X-Git-Tag: v1.8.8~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea5d45dc23a4529a2a45c59ac6c13b61297c789e;p=thirdparty%2Fiptables.git extensions: libxt_NFLOG: fix typo The deprecation warning for `--nflog-range` contains a spelling mistake. Fix it. Signed-off-by: Jeremy Sowden Signed-off-by: Florian Westphal --- diff --git a/extensions/libxt_NFLOG.c b/extensions/libxt_NFLOG.c index 6137a68f..7a12e5ac 100644 --- a/extensions/libxt_NFLOG.c +++ b/extensions/libxt_NFLOG.c @@ -74,7 +74,7 @@ static void NFLOG_check(struct xt_fcheck_call *cb) if (cb->xflags & F_RANGE) fprintf(stderr, "warn: --nflog-range has never worked and is no" - " longer supported, please use --nflog-size insted\n"); + " longer supported, please use --nflog-size instead\n"); if (cb->xflags & F_SIZE) info->flags |= XT_NFLOG_F_COPY_LEN;