]> gitweb.michael.orlitzky.com - postfix-logwatch.git/commit
Fix unescaped left brace warning for "Config: {".
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 24 Aug 2017 11:09:28 +0000 (07:09 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 24 Aug 2017 11:09:28 +0000 (07:09 -0400)
commit84f9fb47783e63757f27e5990ee606ff01e079a9
tree2e01ae4c26a7472298b753a46aab43039c0c55a4
parentaf564700c95b53f3c2c6f111c1a8b5fd32575728
Fix unescaped left brace warning for "Config: {".

New versions of Perl are starting to complain about unescaped braces
in regular expressions, and supposedly the warning will become a fatal
error in Perl 5.30. This particular warning is,

  Unescaped left brace in regex is deprecated, passed through in regex;
  marked by <-- HERE in m/^Config: { <-- HERE / at ./postfix-logwatch
  line 1850.

and it was fixed by going to line 1850 and putting a backslash before
the left brace.

Bug: https://sourceforge.net/p/logreporters/bugs/4/
postfix-logwatch