diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-11 15:29:39 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-10-24 00:09:23 +0200 |
commit | f77519c867e60e2ec00ca824e4c0c0892e4db3e2 (patch) | |
tree | 8266c1f2482444c75cfbded5ae664ee90ef46d29 | |
parent | nhrpd: Let struct zebra_privs_t be available (diff) | |
download | frr-f77519c867e60e2ec00ca824e4c0c0892e4db3e2.tar.xz frr-f77519c867e60e2ec00ca824e4c0c0892e4db3e2.zip |
eigrpd: Make struct zebra_privs_t available
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r-- | eigrpd/eigrp_network.c | 2 | ||||
-rw-r--r-- | eigrpd/eigrpd.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/eigrpd/eigrp_network.c b/eigrpd/eigrp_network.c index 56327f120..21413bf44 100644 --- a/eigrpd/eigrp_network.c +++ b/eigrpd/eigrp_network.c @@ -38,8 +38,6 @@ #include "table.h" #include "vty.h" -extern struct zebra_privs_t eigrpd_privs; - #include "eigrpd/eigrp_structs.h" #include "eigrpd/eigrpd.h" #include "eigrpd/eigrp_interface.h" diff --git a/eigrpd/eigrpd.h b/eigrpd/eigrpd.h index 5ec6c8e1f..de7c881ac 100644 --- a/eigrpd/eigrpd.h +++ b/eigrpd/eigrpd.h @@ -41,6 +41,7 @@ extern struct zclient *zclient; extern struct thread_master *master; extern struct eigrp_master *eigrp_om; +extern struct zebra_privs_t eigrpd_privs; /* Prototypes */ extern void eigrp_master_init(void); |