diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-03-03 13:52:40 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2010-03-03 13:52:40 +0000 |
commit | e8232fed9cbceb8e7424219848cd078e8e1a056d (patch) | |
tree | 910f9b23992c7b79be879b1b241ab16efd758670 /usr.sbin/bgpd/rde_rib.c | |
parent | 7c1ee386d7860232e6ddb752aa63bdf4804a2217 (diff) |
Replace enum rib_state with enum reconf_action since their doing the same.
NEW is now REINIT, ACTIVE is KEEP and DELETE and NONE stay the same.
Diffstat (limited to 'usr.sbin/bgpd/rde_rib.c')
-rw-r--r-- | usr.sbin/bgpd/rde_rib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/rde_rib.c b/usr.sbin/bgpd/rde_rib.c index c8a605d7d7d..7120cc1c364 100644 --- a/usr.sbin/bgpd/rde_rib.c +++ b/usr.sbin/bgpd/rde_rib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde_rib.c,v 1.120 2010/01/13 06:02:37 claudio Exp $ */ +/* $OpenBSD: rde_rib.c,v 1.121 2010/03/03 13:52:39 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org> @@ -78,7 +78,7 @@ rib_new(int id, char *name, u_int16_t flags) bzero(&ribs[id], sizeof(struct rib)); strlcpy(ribs[id].name, name, sizeof(ribs[id].name)); RB_INIT(&ribs[id].rib); - ribs[id].state = RIB_NEW; + ribs[id].state = RECONF_REINIT; ribs[id].id = id; ribs[id].flags = flags; |