diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-05 17:44:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-05 17:44:23 +0000 |
commit | c136855a7196da06006c010daab5d5d40ec36a01 (patch) | |
tree | f8be3f761e6b23e7b448603b061b4f7ab66d98b8 /perl-install | |
parent | 28a8346a55a1db48e4deb127e97dae3128b503f0 (diff) | |
download | drakx-c136855a7196da06006c010daab5d5d40ec36a01.tar drakx-c136855a7196da06006c010daab5d5d40ec36a01.tar.gz drakx-c136855a7196da06006c010daab5d5d40ec36a01.tar.bz2 drakx-c136855a7196da06006c010daab5d5d40ec36a01.tar.xz drakx-c136855a7196da06006c010daab5d5d40ec36a01.zip |
enable one to not enter optional parameters (aka relax checks on valid
values for bitrate and frequency) (#7432)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/network/netconnect.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index a409f875e..006c46485 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -898,11 +898,11 @@ See iwpriv(8) man page for further information."), } ], complete => sub { - if ($ethntf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) { + if ($ethntf->{WIRELESS_FREQ} && $ethntf->{WIRELESS_FREQ} !~ /[0-9.]*[kGM]/) { $in->ask_warn(N("Error"), N("Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz frequency), or add enough '0' (zeroes).")); return 1, 6; } - if ($ethntf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) { + if ($ethntf->{WIRELESS_RATE} && $ethntf->{WIRELESS_RATE} !~ /[0-9.]*[kGM]/) { $in->ask_warn(N("Error"), N("Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add enough '0' (zeroes).")); return 1, 8; } |