Good morning.

The code contains :

sub bind                
{
    my ($self, $name, $password) = @_;

    $self->log($main::LOG_INFO, "wolf bind bound=$self->{bound}");
    return 1 if (   $self->{bound}
                 && $self->{NoBindBeforeOp});

Shouldn't the test use the "or" statement rather than "and", ie :

    return 1 if (   $self->{bound}
                 || $self->{NoBindBeforeOp});

-- 
Christophe Wolfhugel -+- [EMAIL PROTECTED] -+- France Telecom Transpac
Direction des opérations, CSI Gennevilliers
===
Archive at http://www.open.com.au/archives/radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.

Reply via email to