]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Minor cleaning
authorPavel Machek <pavel@ucw.cz>
Wed, 17 May 2000 20:23:05 +0000 (20:23 +0000)
committerPavel Machek <pavel@ucw.cz>
Wed, 17 May 2000 20:23:05 +0000 (20:23 +0000)
proto/rip/rip.c
proto/rip/rip.h

index 163a76c32d121d1706be6cae8e6a01df0362f1da..dddf1a5226eff4498788a54fddd42679ef98e697 100644 (file)
@@ -16,6 +16,7 @@
        FIXME: (nonurgent) allow bigger frequencies than 1 regular update in 6 seconds (?)
        FIXME: propagation of metric=infinity into main routing table may or may not be good idea.
 
+       FIXME: ea_find can return NULL
  */
 
 /**
@@ -435,7 +436,6 @@ rip_dump_entry( struct rip_entry *e )
 {
   debug( "%I told me %d/%d ago: to %I/%d go via %I, metric %d ", 
   e->whotoldme, e->updated-now, e->changed-now, e->n.prefix, e->n.pxlen, e->nexthop, e->metric );
-  if (e->flags & RIP_F_EXTERNAL) debug( "[external]" );
   debug( "\n" );
 }
 
index 185959aee9fbc011103eb6a6febfe13a24fe50da..9a07040459838bbe186b517618a9612b1ed5025d 100644 (file)
@@ -87,7 +87,6 @@ struct rip_entry {
 
   bird_clock_t updated, changed;
   int flags;
-#define RIP_F_EXTERNAL 1
 };
 
 struct rip_packet {