commit | d817e468bf77d1bd14ba99e7a6a28005d3945008 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jan 23 20:23:17 2015 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jan 23 20:27:41 2015 +0100 |
tree | 7b57ea960a21fee2906f88ce880ab1a85c6973e3 | |
parent | 0766e441dd32b39ab884f5882e35e082a1da7a7e [diff] |
BUG/MINOR: sample: fix case sensitivity for the regsub converter Two commits ago in 7eda849 ("MEDIUM: samples: add a regsub converter to perform regex-based transformations"), I got caught for the second time with the inverted case sensitivity usage of regex_comp(). So by default it is case insensitive and passing the "i" flag makes it case sensitive. I forgot to recheck that case before committing the cleanup. No harm anyway, nobody had the time to use it.