summaryrefslogtreecommitdiffstats
path: root/bin/drakguard
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2013-03-15 18:43:13 +0000
committerThierry Vignaud <tv@mageia.org>2013-03-15 18:43:13 +0000
commit5d88d92e34d8bb7455552060fe96039c0385fa1a (patch)
tree214e1a6b2e7ded692d8fa4a28c99e24e1ffb8637 /bin/drakguard
parentf62e579af0c78a83c6a26889128b3eaf5bf1f21a (diff)
downloaddrakguard-5d88d92e34d8bb7455552060fe96039c0385fa1a.tar
drakguard-5d88d92e34d8bb7455552060fe96039c0385fa1a.tar.gz
drakguard-5d88d92e34d8bb7455552060fe96039c0385fa1a.tar.bz2
drakguard-5d88d92e34d8bb7455552060fe96039c0385fa1a.tar.xz
drakguard-5d88d92e34d8bb7455552060fe96039c0385fa1a.zip
perl_checker: "$foobar" is better written without the double quotes
Diffstat (limited to 'bin/drakguard')
-rwxr-xr-xbin/drakguard6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/drakguard b/bin/drakguard
index 9420979..3c5e254 100755
--- a/bin/drakguard
+++ b/bin/drakguard
@@ -619,7 +619,7 @@ sub write_dansguardian() {
sub include_guardian_file {
my ($guardian_file, $external_file) = @_;
my $to_add = ".Include<$external_file>\n";
- clean_config_line($guardian_file, "$to_add");
+ clean_config_line($guardian_file, $to_add);
my @all = cat_($guardian_file);
if ($dansguardian_bannedsitelist eq $guardian_file && !$net_control || $dansguardian_exceptionsitelist eq $guardian_file && $net_control) {
if (!member($to_add, @all)) {
@@ -710,7 +710,7 @@ sub apply_block_program() {
#only make the permissions wright
#`unprotect $diff --remove`;
remove_acl($dansguardian_protected_program_list, $diff);
- clean_config_line($msec_conf, "$diff");
+ clean_config_line($msec_conf, $diff);
restore_permissions($element);
}
}
@@ -766,7 +766,7 @@ sub apply_block_program() {
}
else {
#only make the permissions wright
- clean_config_line($msec_conf, "$list");
+ clean_config_line($msec_conf, $list);
restore_permissions($element);
}
}