diff options
author | Roger Dingledine <arma@torproject.org> | 2007-11-29 15:25:04 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-11-29 15:25:04 +0000 |
commit | aaf35cccf7ac60c17dac687127ec82c612232836 (patch) | |
tree | c382f9c21bb2812178fe1eb85147432c65e73b0c /src/or/rephist.c | |
parent | 0f22c584cdc797e20f4aef74e5312ebda76d05fa (diff) | |
download | tor-aaf35cccf7ac60c17dac687127ec82c612232836.tar.gz tor-aaf35cccf7ac60c17dac687127ec82c612232836.zip |
karsten's second refactoring patch
svn:r12607
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 a29decfbaa..e1dfa2a795 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -1650,7 +1650,7 @@ rep_hist_free_all(void) /** List element containing a service id and the count. */ typedef struct hs_usage_list_elem_t { /** Service id of this elem. */ - char service_id[REND_SERVICE_ID_LEN+1]; + char service_id[REND_SERVICE_ID_LEN_BASE32+1]; /** Number of occurrences for the given service id. */ uint32_t count; /* Pointer to next list elem */ |