commit 45f5e597517abedbf9d650428ac53f03f37089d8 Author: Nick Mathewson nickm@torproject.org Date: Tue Dec 22 10:31:26 2015 -0500
Remove extra quotes from log message
Bug 17843; fix on ddc65e2b --- changes/bug17843 | 3 +++ src/or/config.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/changes/bug17843 b/changes/bug17843 new file mode 100644 index 0000000..6cb16a0 --- /dev/null +++ b/changes/bug17843 @@ -0,0 +1,3 @@ + o Minor bugfixes (logging): + - Remove needless quotes from a log message about unparseable addresses. + Fixes bug 17843; bugfix on 0.2.3.3-alpha. diff --git a/src/or/config.c b/src/or/config.c index e3d6653..a1f8e49 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -6366,7 +6366,7 @@ parse_port_config(smartlist_t *out, } port = ptmp; } else { - log_warn(LD_CONFIG, "Couldn't parse address '%s' for %sPort", + log_warn(LD_CONFIG, "Couldn't parse address %s for %sPort", escaped(addrport), portname); goto err; }
tor-commits@lists.torproject.org