mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 02:55:55 +02:00
This patch fixes the depreciate warning in /var/log/httpd/error_log
not to use a hash as reference
So I changed:
[...]
print %link->{$key}
[...]
To:
[...]
print $link{link}
[...]
which solves the warning and should be good in future.
Joern-Ingo Weigert <jiweigert@ipfire.org>