소스 검색

why does gcc not warn me about this at all? that's evil.

svn:r2032
Roger Dingledine 21 년 전
부모
커밋
a3aaff34b7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/directory.c

+ 1 - 1
src/or/directory.c

@@ -150,7 +150,7 @@ directory_initiate_command(routerinfo_t *router, uint8_t purpose,
     switch(connection_connect(conn, conn->address, conn->addr, conn->port)) {
       case -1:
         router_mark_as_down(conn->identity_digest); /* don't try him again */
-        if(purpose == DIR_PURPOSE_FETCH_DIR && !all_directory_servers_down) {
+        if(purpose == DIR_PURPOSE_FETCH_DIR && !all_directory_servers_down()) {
           log_fn(LOG_INFO,"Giving up on dirserver %s; trying another.", conn->nickname);
           directory_get_from_dirserver(purpose, payload, payload_len);
         }