]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix comment in dirserv.c
authorNick Mathewson <nickm@torproject.org>
Wed, 13 Oct 2004 20:28:46 +0000 (20:28 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 13 Oct 2004 20:28:46 +0000 (20:28 +0000)
svn:r2470

src/or/dirserv.c

index 75cfde30aa4b0c96919ed734dd9b3ff83be75e76..8afc18a16bb6df2ef0f1bcd90f15bb1a2ce255e4 100644 (file)
@@ -482,7 +482,7 @@ list_running_servers(char **nicknames_out)
   for (i = 0; i<n_conns; ++i) {
     conn = connection_array[i];
     if (conn->type != CONN_TYPE_OR || !conn->nickname)
-      continue; /* only list ORs. */
+      continue; /* only list connections to ORs with certificates. */
     s = dirserv_get_nickname_by_digest(conn->identity_digest);
     if (s) {
       name = tor_strdup(s);