]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Indend
authorhno <>
Sat, 17 Nov 2001 18:08:55 +0000 (18:08 +0000)
committerhno <>
Sat, 17 Nov 2001 18:08:55 +0000 (18:08 +0000)
src/peer_select.cc

index 0becece3b7c1467684faf7c37b21f88cf8db73cd..3ca0d54410fd41bd6f36e51f5dd915dc7bbe6e28 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: peer_select.cc,v 1.118 2001/11/15 01:17:29 hno Exp $
+ * $Id: peer_select.cc,v 1.119 2001/11/17 11:08:55 hno Exp $
  *
  * DEBUG: section 44    Peer Selection Algorithm
  * AUTHOR: Duane Wessels
@@ -536,7 +536,7 @@ peerIcpParentMiss(peer * p, icp_common_t * header, ps_state * ps)
        return;
     rtt = tvSubMsec(ps->ping.start, current_time) / p->weight;
     if (ps->first_parent_miss.sin_addr.s_addr == any_addr.s_addr ||
-           rtt < ps->ping.w_rtt) {
+       rtt < ps->ping.w_rtt) {
        ps->first_parent_miss = p->in_addr;
        ps->ping.w_rtt = rtt;
     }
@@ -624,7 +624,7 @@ peerHtcpParentMiss(peer * p, htcpReplyData * htcp, ps_state * ps)
        return;
     rtt = tvSubMsec(ps->ping.start, current_time) / p->weight;
     if (ps->first_parent_miss.sin_addr.s_addr == any_addr.s_addr ||
-           rtt < ps->ping.w_rtt) {
+       rtt < ps->ping.w_rtt) {
        ps->first_parent_miss = p->in_addr;
        ps->ping.w_rtt = rtt;
     }