summaryrefslogtreecommitdiff
path: root/src/or/control.c
diff options
context:
space:
mode:
authorIvan Markin <twim@riseup.net>2016-10-17 20:10:39 +0000
committerNick Mathewson <nickm@torproject.org>2016-10-19 18:06:04 -0400
commite77033e9eee4d40b258e3702e3f4a44fc7f1d436 (patch)
tree2aef0f0ef9887be65ee52dd639c085f2f92305dd /src/or/control.c
parentc87d9b13a4e56237e22df776c47e5520e0d37103 (diff)
downloadtor-e77033e9eee4d40b258e3702e3f4a44fc7f1d436.tar.gz
tor-e77033e9eee4d40b258e3702e3f4a44fc7f1d436.zip
Say 'Invalid argument' instead of unclear 'Unrecognized'
Diffstat (limited to 'src/or/control.c')
-rw-r--r--src/or/control.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c
index a4f8e3713b..92f1fc045b 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -4081,7 +4081,7 @@ handle_control_hsfetch(control_connection_t *conn, uint32_t len,
* of the id. */
desc_id = digest;
} else {
- connection_printf_to_buf(conn, "513 Unrecognized \"%s\"\r\n",
+ connection_printf_to_buf(conn, "513 Invalid argument \"%s\"\r\n",
arg1);
goto done;
}