]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
note another bug to be fixed sometime
authorRoger Dingledine <arma@torproject.org>
Fri, 30 Apr 2004 05:42:52 +0000 (05:42 +0000)
committerRoger Dingledine <arma@torproject.org>
Fri, 30 Apr 2004 05:42:52 +0000 (05:42 +0000)
svn:r1754

src/or/dirserv.c

index 631f3d244b7acde6b58229c52af953b1ad234ad8..cd7ab0e00df1c6ef19f9847fc53dddbf4e758e8f 100644 (file)
@@ -363,6 +363,10 @@ list_running_servers(char **nicknames_out)
       continue; /* only list successfully handshaked OR's. */
     if(!conn->nickname) /* it's an OP, don't list it */
       continue;
+    /* XXX if conn->nickname not approved, continue. otherwise when you
+     * remove them from the approved list and hup, their descriptor is
+     * taken out of the directory, but they're still in the running-routers
+     * line. */
     nickname_lst[n++] = conn->nickname;
   }
   length = n + 1; /* spaces + EOS + 1. */