Commit a1f1b60c authored by Dietmar Maurer's avatar Dietmar Maurer

fix warning about non-existent file

parent 3ffb722d
...@@ -202,7 +202,7 @@ sub read_proxy_config { ...@@ -202,7 +202,7 @@ sub read_proxy_config {
$shcmd .= 'echo \"DENY_FROM:\$DENY_FROM\";'; $shcmd .= 'echo \"DENY_FROM:\$DENY_FROM\";';
$shcmd .= 'echo \"POLICY:\$POLICY\";'; $shcmd .= 'echo \"POLICY:\$POLICY\";';
my $data = `bash -c "$shcmd"`; my $data = -f $conffile ? `bash -c "$shcmd"` : '';
my $res = {}; my $res = {};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment