in reply to Why do I get an 'uninitialized' warning?
Are you sure that $fullname and $email are defined?
Just curious, what do all the '=>'s do in the system call? aren't these two lines identical?
andsystem('/usr/local/bin/AddVirtUser' => "tpasswd=$password", => $domain, => $username, => $fullname, => 5, => '0 0 0', )
?system('/usr/local/bin/AddVirtUser' => "tpasswd=$password", undef, $domain, undef, $username, undef, $fullname, undef, 5, undef, '0 0 0', undef)
-- Dan
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Why do I get an 'uninitialized' warning?
by Anonymous Monk on Sep 30, 2002 at 18:19 UTC | |
by zigdon (Deacon) on Sep 30, 2002 at 18:26 UTC |