From: Amos Jeffries Date: Sat, 6 Feb 2010 00:13:14 +0000 (+1300) Subject: Typo in multicastsiblings parse X-Git-Tag: SQUID_3_2_0_1~430 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79ddb8e26c63f61319350f12a65e8dbe0591c88e;p=thirdparty%2Fsquid.git Typo in multicastsiblings parse --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index c8e2057e2e..996873df04 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1741,7 +1741,7 @@ parse_peer(peer ** head) } else if (!strcasecmp(token, "multicast-responder")) { p->options.mcast_responder = 1; #if PEER_MULTICAST_SIBLINGS - } else if (!strncasecmp(token, "multicast-siblings")) { + } else if (!strcasecmp(token, "multicast-siblings")) { p->options.mcast_siblings = 1; #endif } else if (!strncasecmp(token, "weight=", 7)) {