Acked-by: Donald Sharp <[email protected]> On Tue, Nov 10, 2015 at 12:33 PM, Christian Franke < [email protected]> wrote:
> Signed-off-by: Christian Franke <[email protected]> > --- > isisd/isis_lsp.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/isisd/isis_lsp.c b/isisd/isis_lsp.c > index 5b0d31a..d42aa30 100644 > --- a/isisd/isis_lsp.c > +++ b/isisd/isis_lsp.c > @@ -1278,7 +1278,7 @@ lsp_build (struct isis_lsp *lsp, struct isis_area > *area) > struct te_ipv4_reachability *te_ipreach; > struct isis_adjacency *nei; > #ifdef HAVE_IPV6 > - struct prefix_ipv6 *ipv6, *ip6prefix; > + struct prefix_ipv6 *ipv6, ip6prefix; > struct ipv6_reachability *ip6reach; > #endif /* HAVE_IPV6 */ > struct tlvs tlv_data; > @@ -1531,14 +1531,14 @@ lsp_build (struct isis_lsp *lsp, struct isis_area > *area) > > ip6reach->control_info = 0; > ip6reach->prefix_len = ipv6->prefixlen; > - memcpy (&ip6prefix, &ipv6, sizeof(ip6prefix)); > - apply_mask_ipv6 (ip6prefix); > + memcpy(&ip6prefix, ipv6, sizeof(ip6prefix)); > + apply_mask_ipv6(&ip6prefix); > > - inet_ntop(AF_INET6, &ip6prefix->prefix.s6_addr, buf, > sizeof(buf)); > + inet_ntop(AF_INET6, &ip6prefix.prefix.s6_addr, buf, > sizeof(buf)); > lsp_debug("ISIS (%s): Adding IPv6 reachability for %s/%d", > area->area_tag, buf, ipv6->prefixlen); > > - memcpy (ip6reach->prefix, ip6prefix->prefix.s6_addr, > + memcpy (ip6reach->prefix, ip6prefix.prefix.s6_addr, > sizeof (ip6reach->prefix)); > listnode_add (tlv_data.ipv6_reachs, ip6reach); > } > -- > 2.6.1 > > > _______________________________________________ > Quagga-dev mailing list > [email protected] > https://lists.quagga.net/mailman/listinfo/quagga-dev >
_______________________________________________ Quagga-dev mailing list [email protected] https://lists.quagga.net/mailman/listinfo/quagga-dev
