diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-13 13:21:57 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-10-13 13:21:57 +0000 |
commit | 0115679683cfc8967f018ec789ac06b2900d10bc (patch) | |
tree | 22485c5665a38f0e7a7733ca270baaeb1f036e66 /usr.sbin | |
parent | f88b5541d789aa48324debff13977f938501c465 (diff) |
From ospfd: Funny typo, it is fib not fip so adjust function name.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospf6d/control.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospf6d/ospfe.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospf6d/ospfe.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/ospf6d/control.c b/usr.sbin/ospf6d/control.c index f7b14cfb4fc..53ecd7672c8 100644 --- a/usr.sbin/ospf6d/control.c +++ b/usr.sbin/ospf6d/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.1 2007/10/08 10:44:50 norby Exp $ */ +/* $OpenBSD: control.c,v 1.2 2007/10/13 13:21:56 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -223,7 +223,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/ospf6d/ospfe.c b/usr.sbin/ospf6d/ospfe.c index 96baa988cd3..c27701cf6d1 100644 --- a/usr.sbin/ospf6d/ospfe.c +++ b/usr.sbin/ospf6d/ospfe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.c,v 1.4 2007/10/11 20:01:38 claudio Exp $ */ +/* $OpenBSD: ospfe.c,v 1.5 2007/10/13 13:21:56 claudio Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -1007,7 +1007,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/ospf6d/ospfe.h b/usr.sbin/ospf6d/ospfe.h index a46f10b8635..244022796d7 100644 --- a/usr.sbin/ospf6d/ospfe.h +++ b/usr.sbin/ospf6d/ospfe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfe.h,v 1.7 2007/10/11 20:20:44 claudio Exp $ */ +/* $OpenBSD: ospfe.h,v 1.8 2007/10/13 13:21:56 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -116,7 +116,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 *); |