From: hno <> Date: Sat, 13 Apr 2002 21:46:42 +0000 (+0000) Subject: Fixed a merge error in the improved CARP implementation, reported by X-Git-Tag: SQUID_3_0_PRE1~1089 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=358a75e0053284c6bc30d810d432a316e67c2583;p=thirdparty%2Fsquid.git Fixed a merge error in the improved CARP implementation, reported by Guido. --- diff --git a/src/carp.cc b/src/carp.cc index 8e8026916d..bbf88e0dc2 100644 --- a/src/carp.cc +++ b/src/carp.cc @@ -1,6 +1,6 @@ /* - * $Id: carp.cc,v 1.16 2002/04/04 21:03:46 hno Exp $ + * $Id: carp.cc,v 1.17 2002/04/13 15:46:42 hno Exp $ * * DEBUG: section 39 Cache Array Routing Protocol * AUTHOR: Henrik Nordstrom @@ -143,7 +143,7 @@ carpSelectParent(request_t * request) if (n_carp_peers == 0) return NULL; - key = urlCanonical(url); + key = urlCanonical(request); /* calculate hash key */ debug(39, 2) ("carpSelectParent: Calculating hash for %s\n", key);