소스 검색

Minor whitespace-only fix

teor (Tim Wilson-Brown) 8 년 전
부모
커밋
3a00215c35
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/or/connection.c

+ 1 - 2
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;
   }