--- gvpe/src/connection.C 2004/05/30 17:36:00 1.36 +++ gvpe/src/connection.C 2004/06/11 15:56:34 1.37 @@ -746,8 +746,10 @@ { double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.6; - if (retry_int < 3600 * 8) + if (retry_int < conf->max_retry) retry_cnt++; + else + retry_int = conf->max_retry; w.start (NOW + retry_int);