summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <jafar@atcorp.com>2022-02-28 09:40:12 -0600
committerGitHub <noreply@github.com>2022-02-28 09:40:12 -0600
commit5ff968abbed1b0de1239d618717778cb35d6eefd (patch)
tree5694307ee27330e9b012dc5af101a0d988df76d4
parent4e7a5f06bec966fda943e4eab74cb4438e715525 (diff)
parent7c1e76aa8d753716cf0afd9204bdeb55ad985283 (diff)
Merge pull request #10678 from donaldsharp/staticd_make_check_fix
staticd: Fix `make check` failures
-rw-r--r--staticd/static_main.c1
-rw-r--r--staticd/static_zebra.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/staticd/static_main.c b/staticd/static_main.c
index 3bd784b594..7badd50049 100644
--- a/staticd/static_main.c
+++ b/staticd/static_main.c
@@ -43,7 +43,6 @@
char backup_config_file[256];
bool mpls_enabled;
-uint32_t zebra_ecmp_count = MULTIPATH_NUM;
zebra_capabilities_t _caps_p[] = {
};
diff --git a/staticd/static_zebra.c b/staticd/static_zebra.c
index cdbd37b5d4..f937492ec2 100644
--- a/staticd/static_zebra.c
+++ b/staticd/static_zebra.c
@@ -47,6 +47,7 @@
/* Zebra structure to hold current status. */
struct zclient *zclient;
static struct hash *static_nht_hash;
+uint32_t zebra_ecmp_count = MULTIPATH_NUM;
/* Inteface addition message from zebra. */
static int static_ifp_create(struct interface *ifp)