Fix missing var

This commit is contained in:
Jamie Cameron
2015-06-19 17:10:02 -07:00
parent 3d5802bcaf
commit a8cf0a8e78
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
use strict;
use warnings;
require './firewalld-lib.pl';
our (%text);
our (%text, %in);
&error_setup($text{'start_err'});
my $err = &start_firewalld();
&error($err) if ($err);

View File

@@ -4,7 +4,7 @@
use strict;
use warnings;
require './firewalld-lib.pl';
our (%text);
our (%text, %in);
&error_setup($text{'stop_err'});
my $err = &stop_firewalld();
&error($err) if ($err);