diff options
author | 2015-07-16 17:26:57 +0000 | |
---|---|---|
committer | 2015-07-16 17:26:57 +0000 | |
commit | c4f5242954298a28d8692ef27448e12562b31387 (patch) | |
tree | f05f26fab7233a8c366a16232f95a2fccf2c8ab3 | |
parent | Fix non-sparse mode (diff) | |
download | wireguard-openbsd-c4f5242954298a28d8692ef27448e12562b31387.tar.xz wireguard-openbsd-c4f5242954298a28d8692ef27448e12562b31387.zip |
fix pasto 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 8bc792566d9..ec1e4a350d3 100644 --- a/usr.sbin/bgpd/rde.c +++ b/usr.sbin/bgpd/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.332 2015/06/21 12:16:29 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.333 2015/07/16 17:26:57 blambert Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -803,7 +803,7 @@ rde_dispatch_imsg_parent(struct imsgbuf *ibuf) case IMSG_FILTER_SET: if (imsg.hdr.len > IMSG_HEADER_SIZE + sizeof(struct filter_set)) - fatalx("IMSG_RECONF_CONF bad len"); + fatalx("IMSG_FILTER_SET bad len"); if (parent_set == NULL) { log_warnx("rde_dispatch_imsg_parent: " "IMSG_FILTER_SET unexpected"); |