diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-02-25 17:04:48 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-02-25 17:04:48 +0000 |
commit | a07b65e3765f440efadd4548393e9f215eacb46d (patch) | |
tree | 58783fa292c13b4c31b6ea66cb2533eacf94f140 /lib/network/connection_manager.pm | |
parent | 02eda8ae14edbdd80c1123b8c1573ab7966af3ee (diff) | |
download | drakx-net-a07b65e3765f440efadd4548393e9f215eacb46d.tar drakx-net-a07b65e3765f440efadd4548393e9f215eacb46d.tar.gz drakx-net-a07b65e3765f440efadd4548393e9f215eacb46d.tar.bz2 drakx-net-a07b65e3765f440efadd4548393e9f215eacb46d.tar.xz drakx-net-a07b65e3765f440efadd4548393e9f215eacb46d.zip |
do not require net monitor for connection timeout, it just needs dbus now
Diffstat (limited to 'lib/network/connection_manager.pm')
-rw-r--r-- | lib/network/connection_manager.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/connection_manager.pm b/lib/network/connection_manager.pm index 15168e3..d6dd3cb 100644 --- a/lib/network/connection_manager.pm +++ b/lib/network/connection_manager.pm @@ -38,7 +38,7 @@ sub new { sub set_connection { my ($cmanager, $connection) = @_; $cmanager->{connection} = $connection; - $cmanager->{wait_message_timeout} = 20*1000 if ref($connection) eq 'network::connection::wireless' && $cmanager->{net}{monitor}; + $cmanager->{wait_message_timeout} = 20*1000 if ref($connection) eq 'network::connection::wireless'; } sub check_setup { |