diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-06-28 15:47:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-06-28 15:47:07 -0400 |
commit | e13e9c40c829d15fb71310b0638fff859b85580a (patch) | |
tree | 0697ba12dba31d2de37163864e202fd7edeca130 /src/or/rephist.c | |
parent | 1e008e98767fb1b98142a4099a837bbb2ce818f4 (diff) | |
download | tor-e13e9c40c829d15fb71310b0638fff859b85580a.tar.gz tor-e13e9c40c829d15fb71310b0638fff859b85580a.zip |
Never emit the "opt" prefix in any directory stuff
Fix for bug 5124.
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index fa02f981f3..1c5b511100 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -1531,7 +1531,7 @@ rep_hist_get_bandwidth_lines(void) const char *desc = NULL; size_t len; - /* opt [dirreq-](read|write)-history yyyy-mm-dd HH:MM:SS (n s) n,n,n... */ + /* [dirreq-](read|write)-history yyyy-mm-dd HH:MM:SS (n s) n,n,n... */ /* The n,n,n part above. Largest representation of a uint64_t is 20 chars * long, plus the comma. */ #define MAX_HIST_VALUE_LEN 21*NUM_TOTALS |