diff options
| author | David Lamparter <equinox@diac24.net> | 2016-02-23 13:01:47 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-03-08 00:15:40 +0100 | 
| commit | deaa50db471e75ed20313b63c667b123e8c52724 (patch) | |
| tree | 156666ea08b118dbe00b7cc0000d19d03998056d /bgpd | |
| parent | dd8376febd9523cf0e7263b9e5100f8af718d2b5 (diff) | |
lib: hide away logging internals
... no need to have struct zlog generally-exposed.
A few files get to include log_int.h because they use zlog/vzlog.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'bgpd')
| -rw-r--r-- | bgpd/bgp_updgrp.h | 1 | ||||
| -rw-r--r-- | bgpd/rfapi/rfapi_vty.c | 1 | 
2 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_updgrp.h b/bgpd/bgp_updgrp.h index 6ab384369c..8f3e27bc84 100644 --- a/bgpd/bgp_updgrp.h +++ b/bgpd/bgp_updgrp.h @@ -249,7 +249,6 @@ struct update_subgroup    u_int32_t merge_checks_triggered;    uint64_t id; -  struct zlog *log;    u_int16_t sflags; diff --git a/bgpd/rfapi/rfapi_vty.c b/bgpd/rfapi/rfapi_vty.c index 956005a1bf..c52026e8ef 100644 --- a/bgpd/rfapi/rfapi_vty.c +++ b/bgpd/rfapi/rfapi_vty.c @@ -29,6 +29,7 @@  #include "lib/memory.h"  #include "lib/routemap.h"  #include "lib/log.h" +#include "lib/log_int.h"  #include "lib/linklist.h"  #include "lib/command.h"  | 
