Hmmm...if I'm reading this right...

> +    /* Update the next time we can consider this entry. */
>      cltmp = aconf->conn_class;
> +    aconf->hold = ConFreq(cltmp) ? CurrentTime + ConFreq(cltmp) : 0;
> +
> +    /* Do not try to connect if its use is still on hold until future,
> +     * too many links in its connection class, it is already linked,
> +     * or if connect rules forbid a link now.
> +     */
>      if ((aconf->hold > CurrentTime)
>          || (Links(cltmp) >= MaxLinks(cltmp))
>          || FindServer(aconf->name)
>          || conf_eval_crule(aconf->name, CRULE_MASK))
>        continue;

This 'if' here will always return true unless ConFreq(cltmp) == 0. 
Which will probably break autos :)
-- 
Kevin L. Mitchell <[EMAIL PROTECTED]>

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to