]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
RPKI: Fix a compilation
authorPavel Tvrdík <pawel.tvrdik@gmail.com>
Wed, 23 Dec 2015 14:31:00 +0000 (15:31 +0100)
committerPavel Tvrdík <pawel.tvrdik@gmail.com>
Wed, 23 Dec 2015 14:31:00 +0000 (15:31 +0100)
proto/rpki/rpki.c
proto/rpki/rpki.h

index 4762202588afcd8bbfd3d3b04eccea7a859df614..2f82c8fbc635a70ea48e111782d417c5dcb80b0e 100644 (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));
     }
   }
 
index 91ffe1eda76ebd1186fb12b0ca98701aed83ad51..70669bd6fefdfdbd9951b2d52f4c180b2f584d4d 100644 (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"