diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-12-06 23:56:36 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-12-06 23:56:36 +0000 |
commit | 2e378295d63648d7fca15de1fe19551a0fdc7185 (patch) | |
tree | 9df33c92dac86b9783d63e580b38803e74c9ef75 /src | |
parent | 92372b156afd945d2a7736844aae22febdd95016 (diff) | |
download | tor-2e378295d63648d7fca15de1fe19551a0fdc7185.tar.gz tor-2e378295d63648d7fca15de1fe19551a0fdc7185.zip |
r16997@catbus: nickm | 2007-12-06 18:56:33 -0500
Make http://torproject urls into https://torproject urls. Patch from steve.
svn:r12708
Diffstat (limited to 'src')
-rw-r--r-- | src/config/torrc.sample.in | 8 | ||||
-rw-r--r-- | src/or/buffers.c | 4 | ||||
-rw-r--r-- | src/or/config.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/config/torrc.sample.in b/src/config/torrc.sample.in index c644ee4057..3d4f18deea 100644 --- a/src/config/torrc.sample.in +++ b/src/config/torrc.sample.in @@ -6,7 +6,7 @@ ## that begin with just "#" are disabled commands: you can enable them ## by removing the "#" symbol. ## -## See the man page, or http://www.torproject.org/tor-manual-dev.html, +## See the man page, or https://www.torproject.org/tor-manual-dev.html, ## for more options you can use in this file. ## ## Tor will look for this file in various places based on your platform: @@ -74,7 +74,7 @@ SocksListenAddress 127.0.0.1 # accept connections only from localhost ## NOTE: If you enable these, you should consider mailing the contents of ## the "fingerprint" file to the tor-ops, so we have contact info for you -## in case we need it. See http://www.torproject.org/docs/tor-doc-relay. +## in case we need it. See https://www.torproject.org/docs/tor-doc-relay. ## A unique handle for your server. #Nickname ididnteditheconfig @@ -123,9 +123,9 @@ SocksListenAddress 127.0.0.1 # accept connections only from localhost ## the default exit policy, end this with either a reject *:* or an ## accept *:*. Otherwise, you're _augmenting_ (prepending to) the ## default exit policy. Leave commented to just use the default, which is -## available in the man page or at http://www.torproject.org/documentation.html +## available in the man page or at https://www.torproject.org/documentation.html ## -## Look at http://www.torproject.org/faq-abuse.html#TypicalAbuses +## Look at https://www.torproject.org/faq-abuse.html#TypicalAbuses ## for issues you might encounter if you use the default exit policy. ## ## If certain IPs and ports are blocked externally, e.g. by your firewall, diff --git a/src/or/buffers.c b/src/or/buffers.c index bf1f7e390b..d422d44e59 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -1439,8 +1439,8 @@ fetch_from_buf_socks(buf_t *buf, socks_request_t *req, "Please configure your client accordingly.\n" "</p>\n" "<p>\n" -"See <a href=\"http://www.torproject.org/documentation.html\">" - "http://www.torproject.org/documentation.html</a> for more information.\n" +"See <a href=\"https://www.torproject.org/documentation.html\">" + "https://www.torproject.org/documentation.html</a> for more information.\n" "<!-- Plus this comment, to make the body response more than 512 bytes, so " " IE will be willing to display it. Comment comment comment comment " " comment comment comment comment comment comment comment comment.-->\n" diff --git a/src/or/config.c b/src/or/config.c index a218a86947..3cc6789b8a 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1901,7 +1901,7 @@ print_usage(void) printf( "Copyright 2001-2007 Roger Dingledine, Nick Mathewson.\n\n" "tor -f <torrc> [args]\n" -"See man page for options, or http://www.torproject.org/ for documentation.\n"); +"See man page for options, or https://www.torproject.org/ for documentation.\n"); } /** Print all non-obsolete torrc options. */ |