summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-09-26 18:31:22 +0000
committerNick Mathewson <nickm@torproject.org>2008-09-26 18:31:22 +0000
commit87eb230c01693c0cdb81d05a6bd2c866874c5e3a (patch)
treeb18ba5917831baf9e8c5594d093b8cd5bb7b0854
parente7e12236ac4f472d8fc5043334d2347a7c496a25 (diff)
downloadtor-87eb230c01693c0cdb81d05a6bd2c866874c5e3a.tar.gz
tor-87eb230c01693c0cdb81d05a6bd2c866874c5e3a.zip
Put the start-of-downtime value in the start-of-downtime buffer so that we do not put junk in the dbg-stability.txt file
svn:r16982
-rw-r--r--src/or/rephist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 6262147cb8..76f3165235 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -781,7 +781,7 @@ rep_hist_format_router_status(or_history_t *hist, time_t now)
up = 1;
}
if (hist->start_of_downtime) {
- format_iso_time(sor_buf, hist->start_of_downtime);
+ format_iso_time(sod_buf, hist->start_of_downtime);
down = 1;
}