diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-21 12:59:48 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-21 13:10:10 -0400 |
| commit | 2b50b6031ceb1c960337dd263c91095c4fd27696 (patch) | |
| tree | 9becca3780b262676b2b4ae3ee84dcbd0a126f7c /zebra/zebra_rnh.c | |
| parent | 2f97fa65ff6331e6dec751901ac2e4e450e2d66c (diff) | |
zebra: Fix cherry-pick of ZEBRA_FLAG_CHANGED
When cherrypicking I did not notice the move of the flag
from flags -> status.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_rnh.c')
| -rw-r--r-- | zebra/zebra_rnh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rnh.c b/zebra/zebra_rnh.c index b3cc6f44c0..55c428067b 100644 --- a/zebra/zebra_rnh.c +++ b/zebra/zebra_rnh.c @@ -593,7 +593,7 @@ zebra_rnh_process_static_routes (vrf_id_t vrfid, int family, vrfid, bufn, bufs); } - SET_FLAG(srib->flags, RIB_ENTRY_CHANGED); + SET_FLAG(srib->status, RIB_ENTRY_CHANGED); SET_FLAG(srib->status, RIB_ENTRY_NEXTHOPS_CHANGED); rib_queue_add(static_rn); } |
