On 7/4/07, Joseph L. Casale <[EMAIL PROTECTED]> wrote:
Heh, I am running out of hair:P
I get two errors to start, one is the warning that is better write:
my ($vm) = $_[0];
instead of
my ($vm) = @_[0];

The proper way to say this is

my ($vm) = @_;

And looking at your data I would suggest

my ($vm, @disks) = @_;

snip
@list = (Exchange,Filter,DNS,Domain)
snip
And there are unspecified errors at 9 and 13?
I cant see what else is wrong in the sub?
snip

You are missing quotes and a semicolon.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to