diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-23 07:37:25 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-23 07:37:25 +0000 |
commit | 7ed738b34c16604c6d96aed725c9de1eb1ccceea (patch) | |
tree | d80399d81e8f6c1332c838f99794fc023bed1bff /src | |
parent | 4db70abd42acbe4db535e87ac6396d0211df3ac4 (diff) | |
download | tor-7ed738b34c16604c6d96aed725c9de1eb1ccceea.tar.gz tor-7ed738b34c16604c6d96aed725c9de1eb1ccceea.zip |
fix some typos; move to 0.0.9rc1
svn:r2951
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 2 | ||||
-rw-r--r-- | src/or/hibernate.c | 3 | ||||
-rw-r--r-- | src/win32/orconfig.h | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/src/or/config.c b/src/or/config.c index 21321796e5..6465969ce7 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2257,7 +2257,7 @@ static struct unit_table_t memory_units[] = { }; static struct unit_table_t time_units[] = { - { "second", 1 }, + { "second", 1 }, { "seconds", 1 }, { "minute", 60 }, { "minutes", 60 }, diff --git a/src/or/hibernate.c b/src/or/hibernate.c index 394bf4ff0d..ee8f6e105d 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -480,7 +480,7 @@ accounting_set_wakeup_time(void) log_fn(LOG_NOTICE, "Configured hibernation. This interval begins at %s; " "we will hibernate until %s; " - "we expect to stay up until approximatly %s; " + "we expect to stay up until approximately %s; " "we will start a new interval at %s (all times local)", buf1, buf2, buf3, buf4); } @@ -792,3 +792,4 @@ void consider_hibernation(time_t now) { } } } + diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index e7edad873e..decf1e21c0 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -199,4 +199,4 @@ #define UNALIGNED_INT_ACCESS_OK /* Version number of package */ -#define VERSION "0.0.9rc1-cvs" +#define VERSION "0.0.9rc1" |