diff options
-rw-r--r-- | perl-install/network/activefw.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/network/activefw.pm b/perl-install/network/activefw.pm index f524f7fb1..99a9d8db8 100644 --- a/perl-install/network/activefw.pm +++ b/perl-install/network/activefw.pm @@ -11,7 +11,7 @@ sub new { my $con = $bus->{connection}; $con->add_filter($filter); - $con->add_match("type='signal',interface='com.mandrakesoft.activefirewall'"); + $con->add_match("type='signal',interface='com.mandriva.activefirewall'"); set_DBus_watch($con); $con->dispatch; @@ -24,8 +24,8 @@ sub new { sub find_daemon { my ($o) = @_; - my $service = $o->{bus}->get_service("com.mandrakesoft.activefirewall.daemon"); - $o->{daemon} = $service->get_object("/com/mandrakesoft/activefirewall", "com.mandrakesoft.activefirewall.daemon"); + my $service = $o->{bus}->get_service("com.mandriva.activefirewall.daemon"); + $o->{daemon} = $service->get_object("/com/mandriva/activefirewall", "com.mandriva.activefirewall.daemon"); } sub set_DBus_watch { |