diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-01-16 16:49:39 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-16 16:49:39 -0500 |
commit | e4821fa14de6d76219d4e5c1a320ba263bd5e46d (patch) | |
tree | e1729fadc32f5d4c6dec2da330f39be11d952429 /changes | |
parent | 2645de704be23e1a4a2f565f10e4c81c8db0c82a (diff) | |
download | tor-e4821fa14de6d76219d4e5c1a320ba263bd5e46d.tar.gz tor-e4821fa14de6d76219d4e5c1a320ba263bd5e46d.zip |
Remove two extrneous semicolons in dirserv.c
In 6fbdf635 we added a couple of statements like:
if (test) {
...
};
The extraneous semicolons there get flagged as worrisome empty
statements by the cparser library, so let's fix them.
Patch by Christian Grothoff; fixes bug 7115.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug7115 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug7115 b/changes/bug7115 new file mode 100644 index 0000000000..976b9a9e85 --- /dev/null +++ b/changes/bug7115 @@ -0,0 +1,4 @@ + o Minor bugfixes (portability) + - Remove a couple of extraneous semicolos that were upsetting the + cparser library. Patch by Christian Grothoff. Fixes bug 7115; + bugfix on 0.2.2.1-alpha. |