diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-02-06 19:21:05 +0000 |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-02-06 19:21:05 +0000 |
commit | 88bdd7cf6fba438bbb3d89641bf03b14e8feead6 (patch) | |
tree | 9d19838712fc85141b75e5b6af580b149f8e3402 /lib | |
parent | 423a93ce32215c9854b0b077aeb5ea723a1f0f63 (diff) | |
download | curl-88bdd7cf6fba438bbb3d89641bf03b14e8feead6.tar.gz |
use *.sourceforge.io and misc URL updates
Ref: https://sourceforge.net/blog/introducing-https-for-project-websites/
Closes: https://github.com/curl/curl/pull/1247
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_des.c | 2 | ||||
-rw-r--r-- | lib/curl_ntlm_core.c | 2 | ||||
-rw-r--r-- | lib/curl_ntlm_wb.c | 2 | ||||
-rw-r--r-- | lib/http_ntlm.c | 2 | ||||
-rw-r--r-- | lib/vauth/ntlm.c | 4 | ||||
-rw-r--r-- | lib/vauth/ntlm.h | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/lib/curl_des.c b/lib/curl_des.c index 421c9f768..b123a00f0 100644 --- a/lib/curl_des.c +++ b/lib/curl_des.c @@ -34,7 +34,7 @@ * * The function is a port of the Java based oddParity() function over at: * - * http://davenport.sourceforge.net/ntlm.html + * https://davenport.sourceforge.io/ntlm.html * * Parameters: * diff --git a/lib/curl_ntlm_core.c b/lib/curl_ntlm_core.c index 73d983cf2..e8b763aac 100644 --- a/lib/curl_ntlm_core.c +++ b/lib/curl_ntlm_core.c @@ -27,7 +27,7 @@ /* * NTLM details: * - * http://davenport.sourceforge.net/ntlm.html + * https://davenport.sourceforge.io/ntlm.html * https://www.innovation.ch/java/ntlm.html */ diff --git a/lib/curl_ntlm_wb.c b/lib/curl_ntlm_wb.c index 6a90e6236..9f5b87bc3 100644 --- a/lib/curl_ntlm_wb.c +++ b/lib/curl_ntlm_wb.c @@ -28,7 +28,7 @@ /* * NTLM details: * - * http://davenport.sourceforge.net/ntlm.html + * https://davenport.sourceforge.io/ntlm.html * https://www.innovation.ch/java/ntlm.html */ diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 21c77cd68..8a78bd293 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -27,7 +27,7 @@ /* * NTLM details: * - * http://davenport.sourceforge.net/ntlm.html + * https://davenport.sourceforge.io/ntlm.html * https://www.innovation.ch/java/ntlm.html */ diff --git a/lib/vauth/ntlm.c b/lib/vauth/ntlm.c index b4d345d63..96861c935 100644 --- a/lib/vauth/ntlm.c +++ b/lib/vauth/ntlm.c @@ -27,7 +27,7 @@ /* * NTLM details: * - * http://davenport.sourceforge.net/ntlm.html + * https://davenport.sourceforge.io/ntlm.html * https://www.innovation.ch/java/ntlm.html */ @@ -651,7 +651,7 @@ CURLcode Curl_auth_create_ntlm_type3_message(struct Curl_easy *data, /* A safer but less compatible alternative is: * Curl_ntlm_core_lm_resp(ntbuffer, &ntlm->nonce[0], lmresp); - * See http://davenport.sourceforge.net/ntlm.html#ntlmVersion2 */ + * See https://davenport.sourceforge.io/ntlm.html#ntlmVersion2 */ } if(unicode) { diff --git a/lib/vauth/ntlm.h b/lib/vauth/ntlm.h index b14e7a56a..f906a3c7a 100644 --- a/lib/vauth/ntlm.h +++ b/lib/vauth/ntlm.h @@ -32,7 +32,7 @@ /* Stuff only required for curl_ntlm_msgs.c */ #ifdef BUILDING_CURL_NTLM_MSGS_C -/* Flag bits definitions based on http://davenport.sourceforge.net/ntlm.html */ +/* Flag bits definitions based on https://davenport.sourceforge.io/ntlm.html */ #define NTLMFLAG_NEGOTIATE_UNICODE (1<<0) /* Indicates that Unicode strings are supported for use in security buffer |