diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 15:29:53 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 15:31:11 -0800 |
commit | b02e7a3f965146e86b7a52e47abce5f598be6ad0 (patch) | |
tree | 2e684e32d87a92de8230ff0b752b31527a728841 | |
parent | 8b7002a92990eba35d671ba2c98f9aecb0a6dfb8 (diff) | |
download | quagga-b02e7a3f965146e86b7a52e47abce5f598be6ad0.tar.bz2 quagga-b02e7a3f965146e86b7a52e47abce5f598be6ad0.tar.xz |
zebra: minor whitespace stuff
-rw-r--r-- | zebra/rt_netlink.c | 1 | ||||
-rw-r--r-- | zebra/zebra_rib.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c index 850a271e..b7ab7607 100644 --- a/zebra/rt_netlink.c +++ b/zebra/rt_netlink.c @@ -984,7 +984,6 @@ netlink_link_change (struct sockaddr_nl *snl, struct nlmsghdr *h) zlog_info ("interface %s index %d %s added.", name, ifi->ifi_index, if_flag_dump(new_flags)); - ifp->flags = new_flags; ifp->mtu6 = ifp->mtu = mtu; diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 29b66268..521bf8b3 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -1705,6 +1705,7 @@ rib_add_ipv4 (int type, int flags, struct prefix_ipv4 *p, /* Allocate new rib structure. */ rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); + rib->type = type; rib->distance = distance; rib->flags = flags; |