diff options
author | kn <kn@cvs.openbsd.org> | 2019-11-27 19:42:57 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2019-11-27 19:42:57 +0000 |
commit | 9cb8017448f2f0793f0f61244868a652834aae80 (patch) | |
tree | 7f268bf1e193414d2e756a984c5ea03a9e1baaf6 | |
parent | ea4c64fc2b514f77808e225742b7b90290546f88 (diff) |
Fix function name in error message (zap trailing s)
-rw-r--r-- | sbin/pfctl/pfctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index bbdc507c526..d1a309d919f 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.376 2019/08/15 18:44:53 sashan Exp $ */ +/* $OpenBSD: pfctl.c,v 1.377 2019/11/27 19:42:56 kn Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1397,7 +1397,7 @@ pfctl_load_ruleset(struct pfctl *pf, char *path, struct pf_ruleset *rs, if ((pf->opts & PF_OPT_NOACTION) == 0 && (error = pfctl_ruleset_trans(pf, path, rs->anchor))) { - printf("pfctl_load_rulesets: " + printf("pfctl_load_ruleset: " "pfctl_ruleset_trans %d\n", error); goto error; } |