aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-06-21 04:40:24 +0000
committerNick Mathewson <nickm@torproject.org>2004-06-21 04:40:24 +0000
commitf7976c1e9b11482b16be86979f16999ccd049503 (patch)
tree20a1796834cf8f66ebbd1e0f1695415f32c199b5 /src
parent8aec3a730155af7528928123c0dbc98a4f0293dd (diff)
downloadtor-f7976c1e9b11482b16be86979f16999ccd049503.tar
tor-f7976c1e9b11482b16be86979f16999ccd049503.tar.gz
Terminate comment
svn:r1982
Diffstat (limited to 'src')
-rw-r--r--src/or/router.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c
index bd9d5276c..dd6dd452c 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -554,7 +554,7 @@ int router_dump_router_to_string(char *s, int maxlen, routerinfo_t *router,
if (router->dir_port && !router->is_trusted_dir) {
/* dircacheport wasn't recognized before 0.0.8pre. (When 0.0.7 is gone,
- * we can fold this back into dirport anyway.)
+ * we can fold this back into dirport anyway.) */
result = snprintf(s+written,maxlen-written, "opt dircacheport %d\n",
router->dir_port);
if (result<0 || result+written > maxlen)