On Mon, 2 Jul 2001, Jeff 'japhy' Pinyan wrote:

> >Use of implicit split to @_ is deprecated at /root/bin/panelpasswd.pl line
> >19.
>
> You should have pointed out the line to us, but I found it:
>
> >       $domain_i{$one} = \@{ split /,/, $group[3] };
>
> That construct is erroneous.  You want to use:
>
>   $domain_i{$one} = [ split /,/, $group[3] ];

Doh.  My mistake.  Thanks for catching it.

-- Brett
                                   http://www.chapelperilous.net/btfwk/
------------------------------------------------------------------------
No discipline is ever requisite to force attendance upon lectures which are
really worth the attending.
                -- Adam Smith, "The Wealth of Nations"

Reply via email to