diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-11 19:31:46 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-31 15:20:46 +0100 |
commit | 3801e7646c73b4b0122ea02eb35e8d39c3796c95 (patch) | |
tree | 1cc94938f78745afc8f83b506efc93d6eb9a4f49 /zebra/main.c | |
parent | Merge pull request #3699 from donaldsharp/zebra_rib_debugs (diff) | |
download | frr-3801e7646c73b4b0122ea02eb35e8d39c3796c95.tar.xz frr-3801e7646c73b4b0122ea02eb35e8d39c3796c95.zip |
zebra: Move the master thread handler to the zrouter structure
The master thread handler is really part of the zrouter structure.
So let's move it over to that. Eventually zserv.h will only be
used for zapi messages.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/main.c b/zebra/main.c index b54c36c10..16a5ad53c 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -391,7 +391,7 @@ int main(int argc, char **argv) } } - zebrad.master = frr_init(); + zrouter.master = frr_init(); /* Initialize pthread library */ frr_pthread_init(); @@ -479,7 +479,7 @@ int main(int argc, char **argv) #endif /* HANDLE_NETLINK_FUZZING */ - frr_run(zebrad.master); + frr_run(zrouter.master); /* Not reached... */ return 0; |