소스 검색

reverse the logic, captain

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

+ 1 - 1
src/or/main.c

@@ -307,7 +307,7 @@ static void run_connection_housekeeping(int i, time_t now) {
   connection_t *conn = connection_array[i];
 
   if(conn->type == CONN_TYPE_DIR &&
-     conn->timestamp_created + 5*60 > now) {
+     conn->timestamp_created + 5*60 < now) {
     log_fn(LOG_INFO,"Expiring wedged directory conn (purpose %d)", conn->purpose);
     connection_mark_for_close(conn,0);
     return;