]> git.ipfire.org Git - thirdparty/squid.git/commit
Fix gawk v5 warning (#961)
authorAlex Rousskov <rousskov@measurement-factory.com>
Mon, 10 Jan 2022 21:36:46 +0000 (21:36 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Wed, 12 Jan 2022 21:39:51 +0000 (21:39 +0000)
commita00584a13044548c8effc19b94c96e6211f13200
tree58e9bca57ee0c9fa60dfa3939fa45a34b006860c
parent166fb918211b76a0e79eb07967f4d092f74ea18d
Fix gawk v5 warning (#961)

    gawk: ./mk-globals-c.awk:24:
    warning: regexp escape sequence \" is not a known regexp operator

Some awk variants complain about what they perceive as invalid escape
sequences. Gawk v5+ works but complains about us escaping double quotes.

The corresponding awk statement (added in commit 42c674f) is unnecessary
since commit 582c2af. Removing that statement is better than trying to
guess its portable spelling in the gray zone of awk escape sequences.
src/mk-globals-c.awk