diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-11-03 01:31:42 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-11-03 01:31:42 +0000 |
commit | d63d420930817470fd36b59c70b3194af20417dc (patch) | |
tree | 8c9a98849e8d6a3d510cf0b2887585b275ad2017 /src/or | |
parent | 3e16515343f50ff7ccbb25be6a09589567776277 (diff) | |
download | tor-d63d420930817470fd36b59c70b3194af20417dc.tar tor-d63d420930817470fd36b59c70b3194af20417dc.tar.gz |
Fix another typo
svn:r2651
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index d39736287..e2e71491a 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -615,7 +615,7 @@ time_t accounting_get_wakeup_time(void) int accounting_should_hibernate(void) { - return accouting_hard_limit_reached() || interval_wakeup_time > time(NULL); + return accounting_hard_limit_reached() || interval_wakeup_time > time(NULL); } /** Perform regular maintenance tasks for a single connection. This |