diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2010-08-24 08:11:17 +0200 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2010-12-03 16:47:53 +0100 |
commit | 8db10c6d2fb0dc632f3bfdcc4a9acc5e3c7ad515 (patch) | |
tree | cb4c61bb6a325c6ef35e2dfe6966b9a2456cca9c /src/or/rephist.c | |
parent | 91fec693e01cf5ef77fddca48ed4c0ba4fcd0d1a (diff) | |
download | tor-8db10c6d2fb0dc632f3bfdcc4a9acc5e3c7ad515.tar.gz tor-8db10c6d2fb0dc632f3bfdcc4a9acc5e3c7ad515.zip |
Write bidirectional connection stats in single line.
There's no need to have a separate line conn-stats-end for the end date
and interval length with only a single line conn-bi-direct following.
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index e6398194f0..ce2dd337e8 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -2592,8 +2592,7 @@ rep_hist_format_conn_stats(time_t now) return NULL; /* Not initialized. */ format_iso_time(written, now); - tor_asprintf(&result, "conn-stats-end %s (%d s)\n" - "conn-bi-direct %d,%d,%d,%d\n", + tor_asprintf(&result, "conn-bi-direct %s (%d s) %d,%d,%d,%d\n", written, (unsigned) (now - start_of_conn_stats_interval), below_threshold, |