Correct warning for Lemonldap::NG::Common in make test

This commit is contained in:
Clément Oudot 2009-12-02 09:01:17 +00:00
parent 70522969f3
commit acbc7a677c

View File

@ -53,7 +53,9 @@ sub new {
%$self = %{ $_[0] };
}
else {
%$self = @_;
if (defined @_ and ($#_>0) ) {
%$self = @_;
}
}
unless ( $self->{mdone} ) {
$self->_readConfFile( $self->{confFile} ) unless ( $self->{type} );