소스 검색

Split a long line

Nick Mathewson 8 년 전
부모
커밋
7f9ac4957c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/or/connection.c

+ 2 - 1
src/or/connection.c

@@ -2397,7 +2397,8 @@ retry_listener_ports(smartlist_t *old_conns,
     /* We don't need to be root to create a UNIX socket, so defer until after
      * setuid. */
     const or_options_t *options = get_options();
-    if (port->is_unix_addr && !geteuid() && (options->User) && strcmp(options->User, "root"))
+    if (port->is_unix_addr && !geteuid() && (options->User) &&
+        strcmp(options->User, "root"))
       continue;
 #endif