diff options
author | 2015-06-30 13:54:42 +0000 | |
---|---|---|
committer | 2015-06-30 13:54:42 +0000 | |
commit | c38eb4ff3eceff3e8e4056a9172c0a485f73f1af (patch) | |
tree | 8479661e74e50d24a83e966dec57ee6bb05a7319 /sys/netinet/ip_carp.c | |
parent | Add tests for syslog -U. (diff) | |
download | wireguard-openbsd-c38eb4ff3eceff3e8e4056a9172c0a485f73f1af.tar.xz wireguard-openbsd-c38eb4ff3eceff3e8e4056a9172c0a485f73f1af.zip |
Rename if_output() into if_enqueue() to avoid confusion with comments
talking about (*ifp->if_output)().
ok claudio@, dlg@
Diffstat (limited to 'sys/netinet/ip_carp.c')
-rw-r--r-- | sys/netinet/ip_carp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_carp.c b/sys/netinet/ip_carp.c index 546712c7d04..d5c7a55e8e3 100644 --- a/sys/netinet/ip_carp.c +++ b/sys/netinet/ip_carp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_carp.c,v 1.262 2015/06/29 10:32:29 dlg Exp $ */ +/* $OpenBSD: ip_carp.c,v 1.263 2015/06/30 13:54:42 mpi Exp $ */ /* * Copyright (c) 2002 Michael Shalayeff. All rights reserved. @@ -2304,7 +2304,7 @@ carp_start(struct ifnet *ifp) memcpy(eh->ether_shost, esrc, sizeof(eh->ether_shost)); } - if (if_output(ifp->if_carpdev, m)) { + if (if_enqueue(ifp->if_carpdev, m)) { ifp->if_oerrors++; continue; } |