diff options
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 342b98a..71758cc 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -572,8 +572,9 @@ rip_start(struct proto *p) assert( sizeof(struct rip_block) == 20); assert( sizeof(struct rip_block_auth) == 20); - +#ifdef LOCAL_DEBUG P->magic = RIP_MAGIC; +#endif fib_init( &P->rtable, p->pool, sizeof( struct rip_entry ), 0, NULL ); init_list( &P->connections ); init_list( &P->garbage ); |