diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-01-03 09:13:00 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-01-03 09:13:00 -0500 |
commit | 1bc95633fbd9c27db87d81593242e85d08afe116 (patch) | |
tree | 33749e7b0877764ad1d276ece69b97cb15de8df7 /changes/bug24634 | |
parent | 451c852a0f75fe9ac6935851e763a948c1c5b197 (diff) | |
download | tor-1bc95633fbd9c27db87d81593242e85d08afe116.tar.gz tor-1bc95633fbd9c27db87d81593242e85d08afe116.zip |
Fix some shadowed-global warnings.
These are all about local variables shadowing global
functions. That isn't normally a problem, but at least one
compiler we care about seems to treat this as a case of -Wshadow
violation, so let's fix it.
Fixes bug 24634; bugfix on 0.3.2.1-alpha.
Diffstat (limited to 'changes/bug24634')
-rw-r--r-- | changes/bug24634 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug24634 b/changes/bug24634 new file mode 100644 index 0000000000..ac82b94fbb --- /dev/null +++ b/changes/bug24634 @@ -0,0 +1,3 @@ + o Minor bugfixes (compilation): + - Resolve a few shadowed-variable warnings in the onion service code. + Fixes bug 24634; bugfix on 0.3.2.1-alpha. |