diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-17 21:36:33 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-17 21:36:33 +0000 |
commit | 090836d1710388af170c978f7c986504f545ba6a (patch) | |
tree | 8d847cc68347815b6c467112c8cb870cd925a428 /src/or/control.c | |
parent | ebf13c62828e09da5e04472f97d8112cee1ee3cd (diff) | |
download | tor-090836d1710388af170c978f7c986504f545ba6a.tar tor-090836d1710388af170c978f7c986504f545ba6a.tar.gz |
correct error message in closestream
svn:r4588
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c index 55a46686b..a14306d7b 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -1696,7 +1696,7 @@ handle_control_closestream(connection_t *conn, uint32_t len, smartlist_split_string(args, body, " ", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); if (smartlist_len(args)<2) - connection_printf_to_buf(conn, "512 Missing argument to CLOSECIRCUIT\r\n"); + connection_printf_to_buf(conn, "512 Missing argument to CLOSESTREAM\r\n"); else if (!(ap_conn = get_stream(smartlist_get(args, 0)))) connection_printf_to_buf(conn, "552 Unknown stream \"%s\"\r\n", (char*)smartlist_get(args, 0)); |