diff options
author | Roger Dingledine <arma@torproject.org> | 2010-02-21 17:18:42 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-02-21 17:18:42 -0500 |
commit | 603432090da9c928f9220a454d322c1e6d1c391f (patch) | |
tree | 0f0a95543211bf7bd699b3f8f4d64558e8e8c779 /src/common | |
parent | 0eb03bc6ddb9ea13eb7902c47a8c782f084bddc1 (diff) | |
download | tor-603432090da9c928f9220a454d322c1e6d1c391f.tar.gz tor-603432090da9c928f9220a454d322c1e6d1c391f.zip |
fix typo and garbage grammar
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index eda9979014..82653c455a 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -357,7 +357,7 @@ tor_tls_init(void) version = SSLeay(); - /* OpenSSL 0.9.8l introdeced SSL3_FLAGS_ALLOW_UNSAGE_LEGACY_RENEGOTIATION + /* OpenSSL 0.9.8l introduced SSL3_FLAGS_ALLOW_UNSAGE_LEGACY_RENEGOTIATION * here, but without thinking too hard about it: it turns out that the * flag in question needed to be set at the last minute, and that it * conflicted with an existing flag number that had already been added @@ -376,8 +376,8 @@ tor_tls_init(void) * leave their headers out of sync with their libraries. * * Yes, it _is_ almost as if the OpenSSL developers decided that no - * program should be allowed to use renegotiation its first passed an - * test of intelligence and determination. + * program should be allowed to use renegotiation unless it first passed + * a test of intelligence and determination. */ if (version >= 0x009080c0L && version < 0x009080d0L) { log_notice(LD_GENERAL, "OpenSSL %s looks like version 0.9.8l; " |