commit | 54b88cac24f335414caa875b390d2d78ff4bf9e0 | [log] [tgz] |
---|---|---|
author | Donald Sharp <sharpd@cumulusnetworks.com> | Wed May 13 20:34:46 2015 -0400 |
committer | David Lamparter <equinox@opensourcerouting.org> | Wed May 27 20:48:33 2015 +0200 |
tree | be4834daa2e1df592b61493ec18a084c4ccefa10 | |
parent | a5d589dfbf2c563868d944376155cd4a5998722f [diff] |
lib: wrong #define used for IPV6_MINHOPCOUNT The #define IPV6_MINHOPCNT define is never defined on any unix platform. >From what I can tell the original implementation on the linux platform was IPV6_MINHOPCNT, when it got accepted into the mainstream kernel it was transformed into IPV6_MINHOPCOUNT. Since we test for the define before attempting to use the code it was silently doing nothing for a long time. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>