diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-05-07 16:54:21 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-05-07 16:54:21 +0000 |
commit | 80f0b9d565c94a1d9a57915e12b8e2435f9188c2 (patch) | |
tree | d9a2d385cc5d212cea34c600ad7deb6c7237bf69 /sbin/pfctl | |
parent | 6a399f65862e3f9e3d5ceb4071d6cf09a74243fb (diff) |
typos
From: Jared Yanovich <phirerunner@comcast.net>
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl_parser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c index 83d44c846e1..79549bd3c46 100644 --- a/sbin/pfctl/pfctl_parser.c +++ b/sbin/pfctl/pfctl_parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_parser.c,v 1.197 2004/05/05 23:16:03 frantzen Exp $ */ +/* $OpenBSD: pfctl_parser.c,v 1.198 2004/05/07 16:54:20 henning Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -1435,7 +1435,7 @@ host_dns(const char *s, int v4mask, int v6mask) char *p, *ps; if ((ps = strdup(s)) == NULL) - err(1, "host_if: strdup"); + err(1, "host_dns: strdup"); if ((p = strrchr(ps, ':')) != NULL && !strcmp(p, ":0")) { noalias = 1; *p = '\0'; @@ -1595,7 +1595,7 @@ pfctl_get_ticket(struct pfr_buffer *buf, int rs_num, const char *anchor, if (rs_num == p->rs_num && !strcmp(anchor, p->anchor) && !strcmp(ruleset, p->ruleset)) return (p->ticket); - errx(1, "pfr_get_ticket: assertion failed"); + errx(1, "pfctl_get_ticket: assertion failed"); } int |