diff options
author | ivan <ivan> | 2003-10-07 06:03:17 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-10-07 06:03:17 +0000 |
commit | 79dcffa66be02e3ddb342d36dcded01888c3d841 (patch) | |
tree | 1004ab0a6181cbf1ffbf2922f745256992d52ccc | |
parent | 972ef71fa13cf9a76cb6453a98ece950e1776f1a (diff) |
fix subroutine call from UpdateAccountSettings sub
-rw-r--r-- | FS/FS/part_export/communigate_pro.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export/communigate_pro.pm b/FS/FS/part_export/communigate_pro.pm index a9d9591ca..4240618ac 100644 --- a/FS/FS/part_export/communigate_pro.pm +++ b/FS/FS/part_export/communigate_pro.pm @@ -109,7 +109,7 @@ sub CreateAccount { #externalFlag => $externalFlag, push @args, externalFlag => $externalFlag if $externalFlag; - communigate_pro_command( $machine, $port, $login, $password, $method, @args ); + &communigate_pro_command( $machine, $port, $login, $password, $method, @args); } @@ -118,7 +118,7 @@ sub UpdateAccountSettings { my $accountName = delete $args{'accountName'}; $args{'AccessModes'} = [ split(' ', $args{'AccessModes'}) ]; @args = ( $accountName, \%args ); - communigate_pro_command( $machine, $port, $login, $password, $method, @args ); + &communigate_pro_command( $machine, $port, $login, $password, $method, @args); } sub communigate_pro_command { #subroutine, not method |