diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-25 21:48:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-25 21:48:37 +0000 |
commit | 7a87408f3c061e136c617d525fd78f68fba9c0c7 (patch) | |
tree | 86ad88917ad8df8fa27a7874a0e50e346d23a521 /perl-install/network/isdn.pm | |
parent | 48989238b98dfffc2566dcf6a2bb22d22679769e (diff) | |
download | drakx-7a87408f3c061e136c617d525fd78f68fba9c0c7.tar drakx-7a87408f3c061e136c617d525fd78f68fba9c0c7.tar.gz drakx-7a87408f3c061e136c617d525fd78f68fba9c0c7.tar.bz2 drakx-7a87408f3c061e136c617d525fd78f68fba9c0c7.tar.xz drakx-7a87408f3c061e136c617d525fd78f68fba9c0c7.zip |
since $mouse is undefined, replace it with undef (??)
Diffstat (limited to 'perl-install/network/isdn.pm')
-rw-r--r-- | perl-install/network/isdn.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/isdn.pm b/perl-install/network/isdn.pm index a0f766333..8879ffd82 100644 --- a/perl-install/network/isdn.pm +++ b/perl-install/network/isdn.pm @@ -33,7 +33,7 @@ sub configure { $netcnx->{isdn_external}{device} = $netc->{autodetect}{modem}; $netcnx->{isdn_external}{special_command} = 'AT&F&O2B40'; require network::modem; - network::modem::pppConfig($netcnx->{isdn_external}, $mouse, $netc) or goto isdn_step_1; + network::modem::pppConfig($netcnx->{isdn_external}, undef, $netc) or goto isdn_step_1; } 1; } |