We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d7d7d commit 26caf7fCopy full SHA for 26caf7f
net/netfilter/xt_nfacct.c
@@ -38,8 +38,8 @@ nfacct_mt_checkentry(const struct xt_mtchk_param *par)
38
39
nfacct = nfnl_acct_find_get(par->net, info->name);
40
if (nfacct == NULL) {
41
- pr_info_ratelimited("accounting object `%s' does not exists\n",
42
- info->name);
+ pr_info_ratelimited("accounting object `%.*s' does not exist\n",
+ NFACCT_NAME_MAX, info->name);
43
return -ENOENT;
44
}
45
info->nfacct = nfacct;
0 commit comments