diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-10-29 19:41:24 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-11-10 15:48:26 +0100 |
commit | b9cac605abf029d9f0eb3d83a5f64f5b484d61c1 (patch) | |
tree | 55acc332c2ca5360f5d531f5f97aee5b5c5b6821 /src/or/connection.c | |
parent | 13a7e8bea3b9d37b1bfd5e3a3ea14dd650be632e (diff) | |
download | tor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.tar.gz tor-b9cac605abf029d9f0eb3d83a5f64f5b484d61c1.zip |
Synx manpage and source wrt option capitalization
We had a spelling discrepancy between the manpage and the source code
for some option. Resolve these in favor of the manpage, because it
makes more sense (for example, HTTP should be capitalized).
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 91ce74b5b0..c19632daef 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -579,7 +579,7 @@ connection_about_to_close_connection(connection_t *conn) or_options_t *options = get_options(); rep_hist_note_connect_failed(or_conn->identity_digest, now); entry_guard_register_connect_status(or_conn->identity_digest,0, - !options->HttpsProxy, now); + !options->HTTPSProxy, now); if (conn->state >= OR_CONN_STATE_TLS_HANDSHAKING) { int reason = tls_error_to_orconn_end_reason(or_conn->tls_error); control_event_or_conn_status(or_conn, OR_CONN_EVENT_FAILED, @@ -1370,7 +1370,7 @@ connection_proxy_connect(connection_t *conn, int type) case PROXY_CONNECT: { char buf[1024]; char *base64_authenticator=NULL; - const char *authenticator = options->HttpsProxyAuthenticator; + const char *authenticator = options->HTTPSProxyAuthenticator; /* Send HTTP CONNECT and authentication (if available) in * one request */ |