diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-13 13:21:25 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-13 13:21:25 +0000 |
commit | f88b5541d789aa48324debff13977f938501c465 (patch) | |
tree | 2f66553ccc1b768fbf13700df5cf35d8b46fd807 | |
parent | 8e3ee8c94364b7716eaa0761134212d4ce549218 (diff) |
Funny typo, it is fib not fip so adjust function name.
-rw-r--r-- | usr.sbin/ospfd/control.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospfd/ospfe.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospfd/ospfe.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/ospfd/control.c b/usr.sbin/ospfd/control.c index 79905124376..3c5c32d9de3 100644 --- a/usr.sbin/ospfd/control.c +++ b/usr.sbin/ospfd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.18 2007/03/21 10:54:30 claudio Exp $ */ +/* $OpenBSD: control.c,v 1.19 2007/10/13 13:21:24 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -225,7 +225,7 @@ control_dispatch_imsg(int fd, short event, void *bula) switch (imsg.hdr.type) { case IMSG_CTL_FIB_COUPLE: case IMSG_CTL_FIB_DECOUPLE: - ospfe_fip_update(imsg.hdr.type); + ospfe_fib_update(imsg.hdr.type); /* FALLTHROUGH */ case IMSG_CTL_RELOAD: c->ibuf.pid = imsg.hdr.pid; diff --git a/usr.sbin/ospfd/ospfe.c b/usr.sbin/ospfd/ospfe.c index d462f888f13..af7a4067a75 100644 --- a/usr.sbin/ospfd/ospfe.c +++ b/usr.sbin/ospfd/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.59 2007/10/11 12:19:31 claudio Exp $ */ +/* $OpenBSD: ospfe.c,v 1.60 2007/10/13 13:21:24 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -1008,7 +1008,7 @@ ospfe_router_id(void) } void -ospfe_fip_update(int type) +ospfe_fib_update(int type) { int old = oe_nofib; diff --git a/usr.sbin/ospfd/ospfe.h b/usr.sbin/ospfd/ospfe.h index 54ec653da8e..2136f910499 100644 --- a/usr.sbin/ospfd/ospfe.h +++ b/usr.sbin/ospfd/ospfe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.h,v 1.37 2007/10/11 08:21:29 claudio Exp $ */ +/* $OpenBSD: ospfe.h,v 1.38 2007/10/13 13:21:24 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -126,7 +126,7 @@ int ospfe_imsg_compose_parent(int, pid_t, void *, u_int16_t); int ospfe_imsg_compose_rde(int, u_int32_t, pid_t, void *, u_int16_t); u_int32_t ospfe_router_id(void); -void ospfe_fip_update(int); +void ospfe_fib_update(int); void ospfe_iface_ctl(struct ctl_conn *, unsigned int); void ospfe_nbr_ctl(struct ctl_conn *); void orig_rtr_lsa(struct area *); |