diff options
author | 2014-04-13 10:36:41 +0000 | |
---|---|---|
committer | 2014-04-13 10:36:41 +0000 | |
commit | 0c23b3b204af2c0ae435a99f080b1ca06e8ed9d8 (patch) | |
tree | 13ec4155ac614051df35a5d56a92d0573879f264 | |
parent | httpd(8) did a chdir(2) to the directory containing the cgi script. As (diff) | |
download | wireguard-openbsd-0c23b3b204af2c0ae435a99f080b1ca06e8ed9d8.tar.xz wireguard-openbsd-0c23b3b204af2c0ae435a99f080b1ca06e8ed9d8.zip |
fix language/spelling in error string
ok claudio@
-rw-r--r-- | usr.sbin/bgpd/rde.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/rde.c b/usr.sbin/bgpd/rde.c index 69cb825edb8..67f0bac3379 100644 --- a/usr.sbin/bgpd/rde.c +++ b/usr.sbin/bgpd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.327 2014/01/22 04:08:08 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.328 2014/04/13 10:36:41 blambert Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -739,7 +739,7 @@ rde_dispatch_imsg_parent(struct imsgbuf *ibuf) TAILQ_INIT(&r->set); if ((r->peer.ribid = rib_find(r->rib)) == RIB_FAILED) { log_warnx("IMSG_RECONF_FILTER: filter rule " - "for not existsing rib %s", r->rib); + "for nonexistent rib %s", r->rib); parent_set = NULL; free(r); break; |