when saveconf fails in controller v1, we were returning a malformed

error string.


svn:r6053
This commit is contained in:
Roger Dingledine 2006-02-20 01:24:26 +00:00
parent 498c13b4df
commit 16f265fa0d

View File

@ -1076,8 +1076,8 @@ handle_control_saveconf(connection_t *conn, uint32_t len,
send_control0_error(conn, ERR_INTERNAL,
"Unable to write configuration to disk.");
else
connection_write_str_to_buf("551 Unable to write configuration to disk.",
conn);
connection_write_str_to_buf(
"551 Unable to write configuration to disk.\r\n", conn);
} else {
send_control_done(conn);
}