diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-05 13:29:39 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-05 13:29:39 +0000 |
commit | 88945cb8cd27a11295159cb85944d00180280d61 (patch) | |
tree | b25ff270988310768753414580b88cedc496ca91 /perl-install/standalone/drakgw | |
parent | 5889fd12bc1433d4500fc7349fe26bbc8a7a7548 (diff) | |
download | drakx-backup-do-not-use-88945cb8cd27a11295159cb85944d00180280d61.tar drakx-backup-do-not-use-88945cb8cd27a11295159cb85944d00180280d61.tar.gz drakx-backup-do-not-use-88945cb8cd27a11295159cb85944d00180280d61.tar.bz2 drakx-backup-do-not-use-88945cb8cd27a11295159cb85944d00180280d61.tar.xz drakx-backup-do-not-use-88945cb8cd27a11295159cb85944d00180280d61.zip |
replace "kill USR1" with "kill 'USR1'" (and same for USR2)
(so that 'use strict' works)
Diffstat (limited to 'perl-install/standalone/drakgw')
-rwxr-xr-x | perl-install/standalone/drakgw | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index ace20447d..b31721dae 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -592,17 +592,17 @@ Click on Configure to launch the setup wizard.", $setup_state)); my $button_conf = new Gtk::Button _("Configure"); $button_conf->signal_connect(clicked => sub { system("/usr/sbin/drakgw --wizard"); - kill(USR1, $::CCPID); + kill('USR1', $::CCPID); }); $bbox1->add($button_conf); my $button_cancel = new Gtk::Button _("Cancel"); $button_cancel->signal_connect(clicked => sub { - kill(USR1, $::CCPID); + kill('USR1', $::CCPID); }); $bbox1->add($button_cancel); $window1->show_all(); Gtk->main_iteration while Gtk->events_pending; - $::isEmbedded and kill USR2, $::CCPID; + $::isEmbedded and kill 'USR2', $::CCPID; Gtk->main; Gtk->exit(0); |