From d0b360b1a212e649bc72760d0c12ceb8ba29cc5f Mon Sep 17 00:00:00 2001 From: dmiller Date: Wed, 3 Sep 2014 04:49:48 +0000 Subject: [PATCH] normalize capitalization for ttl output --- output.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output.cc b/output.cc index 72770f7d4..f2741fd32 100644 --- a/output.cc +++ b/output.cc @@ -1486,7 +1486,7 @@ void write_host_status(Target *currenths) { if (o.reason) log_write(LOG_PLAIN, ", %s", target_reason_str(currenths)); if (o.reason && currenths->reason.ttl) - log_write(LOG_PLAIN, " TTL %d", currenths->reason.ttl); + log_write(LOG_PLAIN, " ttl %d", currenths->reason.ttl); if (currenths->to.srtt != -1) log_write(LOG_PLAIN, " (%ss latency)", num_to_string_sigdigits(currenths->to.srtt / 1000000.0, 2));