diff options
Diffstat (limited to 'proto/radv')
-rw-r--r-- | proto/radv/Makefile | 2 | ||||
-rw-r--r-- | proto/radv/radv.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/proto/radv/Makefile b/proto/radv/Makefile index 3584a5f3..05317eff 100644 --- a/proto/radv/Makefile +++ b/proto/radv/Makefile @@ -2,3 +2,5 @@ src := packets.c radv.c obj := $(src-o-files) $(all-daemon) $(cf-local) + +tests_objs := $(tests_objs) $(src-o-files)
\ No newline at end of file diff --git a/proto/radv/radv.c b/proto/radv/radv.c index 44b44879..d7d975ab 100644 --- a/proto/radv/radv.c +++ b/proto/radv/radv.c @@ -311,7 +311,7 @@ radv_check_active(struct proto_radv *ra) if (!radv_trigger_valid(cf)) return 1; - struct channel *c =ra->p.main_channel; + struct channel *c = ra->p.main_channel; return rt_examine(c->table, &cf->trigger, &ra->p, c->out_filter); } |