commit | 1666930f031c5075d305cb58b5a06f8fc5e82089 | [log] [tgz] |
---|---|---|
author | Chad Lavoie <clavoie@haproxy.com> | Tue Oct 04 16:10:40 2016 -0400 |
committer | Willy Tarreau <w@1wt.eu> | Tue Oct 25 22:15:22 2016 +0200 |
tree | 2e9d529b9f6dc4c2cb52b428e212f87bc3c3f91f | |
parent | 3a2661d6b4218704c828c8a712c87d651bfe29b5 [diff] |
MINOR: stats: Escape equals sign on socket dump Greetings, Was recently working with a stick table storing URL's and one had an equals sign in it (e.g. 127.0.0.1/f=ab) which made it difficult to easily split the key and value without a regex. This patch will change it so that the key looks like "key=127.0.0.1/f\=ab" instead of "key=127.0.0.1/f=ab". Not very important given that there are ways to work around it. Thanks, - Chad