diff options
author | 2018-06-26 13:34:26 +0000 | |
---|---|---|
committer | 2018-06-26 13:34:26 +0000 | |
commit | 70526fe6dac96a178d19c26690a828224e4f5ed0 (patch) | |
tree | 3a3dbf65a88e68d125259ed7d496b4a30557e553 | |
parent | add missing .An and .Mt macros below AUTHORS (diff) | |
download | wireguard-openbsd-70526fe6dac96a178d19c26690a828224e4f5ed0.tar.xz wireguard-openbsd-70526fe6dac96a178d19c26690a828224e4f5ed0.zip |
Wrong function name in error message.
-rw-r--r-- | usr.sbin/bgpd/rde_update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/rde_update.c b/usr.sbin/bgpd/rde_update.c index 1889f44a3b1..7463970f456 100644 --- a/usr.sbin/bgpd/rde_update.c +++ b/usr.sbin/bgpd/rde_update.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde_update.c,v 1.90 2018/06/13 09:33:51 claudio Exp $ */ +/* $OpenBSD: rde_update.c,v 1.91 2018/06/26 13:34:26 claudio Exp $ */ /* * Copyright (c) 2004 Claudio Jeker <claudio@openbsd.org> @@ -169,7 +169,7 @@ up_prefix_cmp(struct update_prefix *a, struct update_prefix *b) return (memcmp(a->prefix.vpn4.labelstack, b->prefix.vpn4.labelstack, a->prefix.vpn4.labellen)); default: - fatalx("pt_prefix_cmp: unknown af"); + fatalx("up_prefix_cmp: unknown af"); } if (a->prefixlen < b->prefixlen) return (-1); |