소스 검색

point out why router_forget_router probably doesn't work

svn:r422
Roger Dingledine 22 년 전
부모
커밋
e13d947986
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/or/routers.c

+ 1 - 0
src/or/routers.c

@@ -194,6 +194,7 @@ void router_forget_router(uint32_t addr, uint16_t port) {
 //  log(LOG_DEBUG,"router_forget_router(): Forgot about router %d:%d",addr,port);
   for(; i<directory->n_routers-1;i++)
     directory->routers[i] = directory->routers[i+1];
+  /* XXX bug, we're not decrementing n_routers here? needs more attention. -RD */
 }
 
 /* load the router list */