diff options
author | Nick Mathewson <nickm@torproject.org> | 2022-06-16 14:35:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2022-06-16 14:35:38 -0400 |
commit | 0eb21427c95da6d67778080d3da0b858e077104a (patch) | |
tree | da135fb46850e3b7e0a8085fb6c24e14f7d6c607 /changes | |
parent | 1d6470a2a83ca6bab8c52bcff5d0969b1866a4df (diff) | |
download | tor-0eb21427c95da6d67778080d3da0b858e077104a.tar.gz tor-0eb21427c95da6d67778080d3da0b858e077104a.zip |
Don't add redundant quotes with escaped() in log messages.
The escaped() function and its kin already wrap their output in
quotes: there's no reason to do so twice.
I am _NOT_ making a corresponding change in calls that make the same
mistake in controller-related functions, however, due to the risk of
a compatibility break. :(
Closes #22723.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/log-quotes | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/log-quotes b/changes/log-quotes new file mode 100644 index 0000000000..7c9308eb44 --- /dev/null +++ b/changes/log-quotes @@ -0,0 +1,3 @@ + o Minor bugfixes (logging): + - Avoid ""double-quoting"" strings in several log messages. + Fixes bug 22723; bugfix on 0.1.2.2-alpha. |