diff options
author | 2005-07-14 09:24:38 +0000 | |
---|---|---|
committer | 2005-07-14 09:24:38 +0000 | |
commit | af6426644c15b6e468eae274ba37ec1188e17f72 (patch) | |
tree | ae1613969e9c0d0bc92e53f7c4533170e75816ae | |
parent | Fix comments concerning VOP_LINK(). (diff) | |
download | wireguard-openbsd-af6426644c15b6e468eae274ba37ec1188e17f72.tar.xz wireguard-openbsd-af6426644c15b6e468eae274ba37ec1188e17f72.zip |
free commitz from pascoes kitchen. fix an error message
ok henning@
-rw-r--r-- | usr.sbin/bgpd/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/config.c b/usr.sbin/bgpd/config.c index c08beafd45b..fbee85d0421 100644 --- a/usr.sbin/bgpd/config.c +++ b/usr.sbin/bgpd/config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.45 2005/03/30 11:23:15 henning Exp $ */ +/* $OpenBSD: config.c,v 1.46 2005/07/14 09:24:38 dlg Exp $ */ /* * Copyright (c) 2003, 2004, 2005 Henning Brauer <henning@openbsd.org> @@ -309,7 +309,7 @@ prepare_listeners(struct bgpd_config *conf) opt = 1; if (setsockopt(la->fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) == -1) - fatal("setsockopt SO_REUSEPORT"); + fatal("setsockopt SO_REUSEADDR"); if (bind(la->fd, (struct sockaddr *)&la->sa, la->sa.ss_len) == -1) { |