Skip to content

Commit

Permalink
Validate link on localhost IPv6 link
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele Lacamera committed Jan 19, 2015
1 parent d331575 commit 5cbb748
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/pico_ipv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,8 @@ int pico_ipv6_frame_push(struct pico_frame *f, struct pico_ip6 *dst, uint8_t pro
return -1;
}
link = pico_ipv6_linklocal_get(f->dev);
goto push_final;
if (link)
goto push_final;
}

route = ipv6_pushed_frame_checks(f, dst);
Expand Down

0 comments on commit 5cbb748

Please sign in to comment.