Browse Source

petty cleanups

svn:r6421
Roger Dingledine 19 years ago
parent
commit
3c86402cc2
2 changed files with 2 additions and 3 deletions
  1. 1 1
      src/or/main.c
  2. 1 2
      src/or/router.c

+ 1 - 1
src/or/main.c

@@ -1316,7 +1316,7 @@ dumpstats(int severity)
         (int)(now - conn->timestamp_created));
     if (!connection_is_listener(conn)) {
       log(severity,LD_GENERAL,
-          "Conn %d is to '%s:%d'.", i,
+          "Conn %d is to %s:%d.", i,
           safe_str(conn->address), conn->port);
       log(severity,LD_GENERAL,
           "Conn %d: %d bytes waiting on inbuf (len %d, last read %d secs ago)",

+ 1 - 2
src/or/router.c

@@ -760,10 +760,9 @@ router_get_my_routerinfo(void)
   if (!server_mode(get_options()))
     return NULL;
 
-  if (!desc_routerinfo || !desc_clean_since) {
+  if (!desc_routerinfo || !desc_clean_since)
     if (router_rebuild_descriptor(!desc_routerinfo))
       return NULL;
-  }
   return desc_routerinfo;
 }