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/ospf6d/control.c | |
parent | f88b5541d789aa48324debff13977f938501c465 (diff) |
From ospfd: Funny typo, it is fib not fip so adjust function name.
Diffstat (limited to 'usr.sbin/ospf6d/control.c')
-rw-r--r-- | usr.sbin/ospf6d/control.c | 4 |
1 files changed, 2 insertions, 2 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; |