diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-10-28 11:19:16 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-10-28 09:52:24 -0400 |
commit | f6b1dc2805ce23d4f7fddcf2714b13f718d20038 (patch) | |
tree | f157ee6579fcc3d0e940e240e0490f4cbf83b788 /src/or/hibernate.c | |
parent | 48bafb47acc19c2bee54f0731a73b8b2fc980359 (diff) | |
download | tor-f6b1dc2805ce23d4f7fddcf2714b13f718d20038.tar.gz tor-f6b1dc2805ce23d4f7fddcf2714b13f718d20038.zip |
Fix typo, spotted by tmpname0901. Thanks!
Diffstat (limited to 'src/or/hibernate.c')
-rw-r--r-- | src/or/hibernate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c index aebce4cc88..2f7170fa24 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -943,7 +943,7 @@ consider_hibernation(time_t now) if (hibernate_soft_limit_reached()) { log_notice(LD_ACCT, "Bandwidth soft limit reached; commencing hibernation. " - "No new conncetions will be accepted"); + "No new connections will be accepted"); hibernate_begin(HIBERNATE_STATE_LOWBANDWIDTH, now); } else if (accounting_enabled && now < interval_wakeup_time) { format_local_iso_time(buf,interval_wakeup_time); |