Remove want_cmddata from HSFETCH, which does not in fact want data

This looks a copy-and-paste error to me.  Fixes bug 30646; bugfix on
0.4.1.1-alpha.
This commit is contained in:
Nick Mathewson 2019-05-29 10:10:57 -04:00
parent 24a2352d56
commit 2d66250d8a
2 changed files with 4 additions and 1 deletions

4
changes/bug30646 Normal file
View file

@ -0,0 +1,4 @@
o Minor bugfixes (controller):
- Repair the HSFETCH command so that it works again. Previously, it
expected a body when it shouldn't have. Fixes bug 30646; bugfix on
0.4.1.1-alpha.

View file

@ -1385,7 +1385,6 @@ static const control_cmd_syntax_t hsfetch_syntax = {
.min_args = 1, .max_args = 1,
.accept_keywords = true,
.allowed_keywords = hsfetch_keywords,
.want_cmddata = true,
};
/** Implementation for the HSFETCH command. */