0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00

RPKI: Fix a compilation

This commit is contained in:
Pavel Tvrdík 2015-12-23 15:31:00 +01:00
parent e138152c6f
commit a3cc5d7697
2 changed files with 4 additions and 3 deletions

View File

@ -469,12 +469,12 @@ rpki_reconfigure_proto(struct rpki_proto *p, struct rpki_config *new_cf, struct
struct rpki_cache_group *g;
WALK_LIST(g, p->group_list)
{
RPKI_TRACE(D_EVENTS, p, "Group(%u)", g->preference);
DBG("Group(%u)", g->preference);
struct rpki_cache *c;
WALK_LIST(c, g->cache_list)
{
RPKI_TRACE(D_EVENTS, p, " Cache(%s)", get_cache_ident(c));
DBG(" Cache(%s)", get_cache_ident(c));
}
}

View File

@ -16,7 +16,8 @@
#include "lib/socket.h"
#include "lib/ip.h"
#include "transport.h"
#include "ssh_transport.h"
#include "tcp_transport.h"
#include "rtr.h"
#include "packets.h"