diff options
author | Olivier Blin <oblin@mandriva.com> | 2009-03-03 18:17:12 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2009-03-03 18:17:12 +0000 |
commit | a63db013c53a49a6654a55a99f83a36d81b74d27 (patch) | |
tree | 97b62a70c6eefb7ff7d58a133f447b77565afd89 /bin/drakids | |
parent | 5aa345a630f9bd8324e3693d322cec1afcc542b5 (diff) | |
download | drakx-net-a63db013c53a49a6654a55a99f83a36d81b74d27.tar drakx-net-a63db013c53a49a6654a55a99f83a36d81b74d27.tar.gz drakx-net-a63db013c53a49a6654a55a99f83a36d81b74d27.tar.bz2 drakx-net-a63db013c53a49a6654a55a99f83a36d81b74d27.tar.xz drakx-net-a63db013c53a49a6654a55a99f83a36d81b74d27.zip |
fix crash in net_applet when mandi is started (happens if mandi was not available at net_applet start), this requires some API change to split init code, so that we do not add the dbus filters every time we try to reconnect the network::ifw object
Diffstat (limited to 'bin/drakids')
-rw-r--r-- | bin/drakids | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/drakids b/bin/drakids index dcaa1b2..4a223a9 100644 --- a/bin/drakids +++ b/bin/drakids @@ -45,7 +45,8 @@ my $w = ugtk2->new($title); my $ifw; eval { - $ifw = network::ifw->new(dbus_object::system_bus(), sub { + my $bus = dbus_object::system_bus(); + network::ifw::init($bus, sub { my ($_con, $msg) = @_; my $member = $msg->get_member; if ($member eq 'Attack') { @@ -62,6 +63,7 @@ eval { $w->{window}->present; } }); + $ifw = network::ifw->new($bus); }; if ($@) { |