Browse Source

Fix comment in dirserv.c

svn:r2470
Nick Mathewson 21 years ago
parent
commit
55634e4eec
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/dirserv.c

+ 1 - 1
src/or/dirserv.c

@@ -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);