Merge pull request #2848 from donaldsharp/more_init

sharpd, staticd: Add access_list_init
This commit is contained in:
Russ White 2018-08-16 11:35:52 -04:00 committed by GitHub
commit 12fa538096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -148,6 +148,7 @@ int main(int argc, char **argv, char **envp)
vrf_init(NULL, NULL, NULL, NULL);
access_list_init();
route_map_init();
sharp_zebra_init();

View File

@ -30,6 +30,7 @@
#include "libfrr.h"
#include "vrf.h"
#include "nexthop.h"
#include "filter.h"
#include "static_vrf.h"
#include "static_vty.h"
@ -135,6 +136,7 @@ int main(int argc, char **argv, char **envp)
master = frr_init();
access_list_init();
static_vrf_init();
static_zebra_init();