diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-18 04:45:51 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-18 04:45:51 +0000 |
commit | d597b23c421333d4f2f65870694b77510d8fb01e (patch) | |
tree | 711bfbea19a793a0da30eaa1e435a11a9ed88fd2 /src/or/control.c | |
parent | f3f6daf819b73516db0adb4b149a7849188b7038 (diff) | |
download | tor-d597b23c421333d4f2f65870694b77510d8fb01e.tar.gz tor-d597b23c421333d4f2f65870694b77510d8fb01e.zip |
Massage a little code to hopfully please coverity.
svn:r17669
Diffstat (limited to 'src/or/control.c')
-rw-r--r-- | src/or/control.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/control.c b/src/or/control.c index 672c3a2683..03f337c61e 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -764,8 +764,8 @@ control_setconf_helper(control_connection_t *conn, uint32_t len, char *body, msg = "553 Unable to set option"; break; case SETOPT_OK: - /* coverity[dead_error_line] - * (It's okay if we can never get to this point.) */ + /* (It's okay if we can never get to this point.) */ + /* coverity[dead_error_line] */ msg = "551 Internal error"; tor_fragile_assert(); break; @@ -1194,8 +1194,8 @@ handle_control_authenticate(control_connection_t *conn, uint32_t len, err: tor_free(password); if (!errstr) { - /* coverity[dead_error_line] - * (It's okay if we can never get to this point.) */ + /* (It's okay if we can never get to this point.) */ + /* coverity[dead_error_line] */ errstr = "Unknown reason."; } connection_printf_to_buf(conn, "515 Authentication failed: %s\r\n", |