diff options
author | Roger Dingledine <arma@torproject.org> | 2012-06-16 02:29:03 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-06-16 02:29:03 -0400 |
commit | 26855fe22cc314d0f60162f6e6020aa0741a67e3 (patch) | |
tree | 9eff4d4db126bb2198b355df40103a504e1b24e1 /src/or/config.c | |
parent | c37b8023b70f7667db342ffd4c998df6b929f4e4 (diff) | |
download | tor-26855fe22cc314d0f60162f6e6020aa0741a67e3.tar.gz tor-26855fe22cc314d0f60162f6e6020aa0741a67e3.zip |
conn_type_to_string() on a listener already says it's a listener
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 598051ef4f..d90e0fc996 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1266,7 +1266,7 @@ options_act_reversible(const or_options_t *old_options, char **msg) SMARTLIST_FOREACH(new_listeners, connection_t *, conn, { - log_notice(LD_NET, "Closing partially-constructed listener %s on %s:%d", + log_notice(LD_NET, "Closing partially-constructed %s on %s:%d", conn_type_to_string(conn->type), conn->address, conn->port); connection_close_immediate(conn); connection_mark_for_close(conn); |