diff options
author | Chris Hall <chris.hall@highwayman.com> | 2011-08-26 09:00:03 +0100 |
---|---|---|
committer | Chris Hall <chris.hall@highwayman.com> | 2011-08-26 09:00:03 +0100 |
commit | 280a6b4c5c3a35d53e3fc290ab2dcbea51d42dec (patch) | |
tree | e120a908cd0ace6a89480e57d29824758b5fa701 /lib | |
parent | 61ce99795c2b0a7c426f02795fd478ca84d7fa0a (diff) | |
download | quagga-280a6b4c5c3a35d53e3fc290ab2dcbea51d42dec.tar.bz2 quagga-280a6b4c5c3a35d53e3fc290ab2dcbea51d42dec.tar.xz |
Fix compilation of sockopt.c when no IP_MINTTL or IPV6_MINHOPCOUNT (II)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sockopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sockopt.c b/lib/sockopt.c index 5aed83bc..8dfd0f16 100644 --- a/lib/sockopt.c +++ b/lib/sockopt.c @@ -290,7 +290,7 @@ setsockopt_minttl (int sock_fd, int ttl) ipv6_minhopcount = IPV6_MINHOPCOUNT # else have_ipv6_minhopcount = false, - ipv6_minhopcount = IPV6_MINHOPCOUNT + ipv6_minhopcount = 0 # endif } ; #endif /* HAVE_IPV6 */ |