diff options
author | Roger Dingledine <arma@torproject.org> | 2005-08-23 01:00:30 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-08-23 01:00:30 +0000 |
commit | 675f6b5f3c17f2d99273807174b0bc2c4fdca0c8 (patch) | |
tree | 1f85013486949d0dcef3615b8f908a2ea9f45086 | |
parent | 8b766d1b7e66dfc3e87141f161ba0aba9ae3f9dc (diff) | |
download | tor-675f6b5f3c17f2d99273807174b0bc2c4fdca0c8.tar tor-675f6b5f3c17f2d99273807174b0bc2c4fdca0c8.tar.gz |
that comma was important
svn:r4820
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 51142c358..227a5599c 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -852,7 +852,7 @@ second_elapsed_callback(int fd, short event, void *args) me->address, me->or_port); if (me && !check_whether_dirport_reachable()) log(LOG_WARN,"Your server (%s:%d) has not managed to confirm that its DirPort is reachable. Please check your firewalls, ports, address, /etc/hosts file, etc.", - me->address me->dir_port); + me->address, me->dir_port); } /* if more than 100s have elapsed, probably the clock jumped: doesn't count. */ |