diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-02-13 14:58:29 -0500 | 
|---|---|---|
| committer | Stephen Worley <sworley@cumulusnetworks.com> | 2019-05-14 14:15:18 -0700 | 
| commit | b3f2b59020aeb0d04f7867585766732d54026edf (patch) | |
| tree | cf18f66d86ab63fbfcbda7a53dd7b35ddc6dc2fa /zebra/zebra_mpls_openbsd.c | |
| parent | 7819f72ea27bbf04181458e3598c9bf8c816be32 (diff) | |
zebra: Move multipath_num into zrouter
The multipath_num variable is a property of zebra_router,
so move it there.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_mpls_openbsd.c')
| -rw-r--r-- | zebra/zebra_mpls_openbsd.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/zebra_mpls_openbsd.c b/zebra/zebra_mpls_openbsd.c index 977a8eaf3c..e7fdaf127d 100644 --- a/zebra/zebra_mpls_openbsd.c +++ b/zebra/zebra_mpls_openbsd.c @@ -27,6 +27,7 @@  #include "zebra/zebra_mpls.h"  #include "zebra/debug.h"  #include "zebra/zebra_errors.h" +#include "zebra/zebra_router.h"  #include "privs.h"  #include "prefix.h" @@ -262,7 +263,7 @@ static int kernel_lsp_cmd(struct zebra_dplane_ctx *ctx)  		if (!nexthop)  			continue; -		if (nexthop_num >= multipath_num) +		if (nexthop_num >= zrouter.multipath_num)  			break;  		if (((action == RTM_ADD || action == RTM_CHANGE)  | 
