diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-07-11 08:00:54 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-07-11 08:00:54 +0000 |
commit | fccf12fa94e4e40e22da28afd107e70fc3b8ef4a (patch) | |
tree | e4545475d0358581b8ab4a795f7d1b41ba4fa9c3 /perl-install/standalone/net_applet | |
parent | b1dadf3b40a5974ca3fe656163eecfb9cd28fc3f (diff) | |
download | drakx-backup-do-not-use-fccf12fa94e4e40e22da28afd107e70fc3b8ef4a.tar drakx-backup-do-not-use-fccf12fa94e4e40e22da28afd107e70fc3b8ef4a.tar.gz drakx-backup-do-not-use-fccf12fa94e4e40e22da28afd107e70fc3b8ef4a.tar.bz2 drakx-backup-do-not-use-fccf12fa94e4e40e22da28afd107e70fc3b8ef4a.tar.xz drakx-backup-do-not-use-fccf12fa94e4e40e22da28afd107e70fc3b8ef4a.zip |
remove interface tests, this is filtered before
Diffstat (limited to 'perl-install/standalone/net_applet')
-rw-r--r-- | perl-install/standalone/net_applet | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/standalone/net_applet b/perl-install/standalone/net_applet index 03b5cba10..37300d5a5 100644 --- a/perl-install/standalone/net_applet +++ b/perl-install/standalone/net_applet @@ -112,10 +112,7 @@ my @attacks_queue; if ($enable_activefw) { $activefw = network::activefw->new(sub { my ($_con, $msg) = @_; - handle_attack($msg->get_args_list) if - $msg->get_interface eq "com.mandrakesoft.activefirewall" && - $msg->get_path eq "/com/mandrakesoft/activefirewall" && - $msg->get_member eq "Attack"; + handle_attack($msg->get_args_list) if $msg->get_member eq "Attack"; }); } |