diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-21 12:57:28 +1100 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-01-29 07:16:05 +1100 |
commit | 3a00215c35b01909a2db24132ab800298d61b647 (patch) | |
tree | 7c2e0e37854a2027672abefd1e8f9d42e48855de /src/or | |
parent | 4db5a35e669a03db33d04632349ec95022de53cf (diff) | |
download | tor-3a00215c35b01909a2db24132ab800298d61b647.tar.gz tor-3a00215c35b01909a2db24132ab800298d61b647.zip |
Minor whitespace-only fix
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 0420f2656b..63bfb2e01e 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1732,8 +1732,7 @@ connection_connect_log_client_use_ip_version(const connection_t *conn) /* Only clients care about ClientUseIPv4/6, bail out early on servers, and * on connections we don't care about */ - if (server_mode(options) || !conn - || conn->type == CONN_TYPE_EXIT) { + if (server_mode(options) || !conn || conn->type == CONN_TYPE_EXIT) { return; } |