summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-08-30 09:51:07 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-08-30 09:51:07 +0200
commitd4d53d99b1bbf75e95e9493cae930257ee443ffe (patch)
tree42191843a628325d4aecf351268e6986acd372a4 /docs
parent4fee6c644fd9f807fcbe690ccf1c2617a78dfe93 (diff)
downloadcurl-d4d53d99b1bbf75e95e9493cae930257ee443ffe.tar.gz
mailing lists: move from cool.haxx.se to lists.haxx.se
Diffstat (limited to 'docs')
-rw-r--r--docs/DEPRECATE.md2
-rw-r--r--docs/HELP-US.md2
-rw-r--r--docs/examples/multithread.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/docs/DEPRECATE.md b/docs/DEPRECATE.md
index 25cdc869c..464974d1a 100644
--- a/docs/DEPRECATE.md
+++ b/docs/DEPRECATE.md
@@ -2,7 +2,7 @@
If any of these deprecated features is a cause for concern for you, please
email the
-[curl-library mailing list](https://cool.haxx.se/mailman/listinfo/curl-library)
+[curl-library mailing list](https://lists.haxx.se/listinfo/curl-library)
as soon as possible and explain to us why this is a problem for you and
how your use case can't be satisfied properly using a workaround.
diff --git a/docs/HELP-US.md b/docs/HELP-US.md
index ce3d720be..257845190 100644
--- a/docs/HELP-US.md
+++ b/docs/HELP-US.md
@@ -5,7 +5,7 @@ looking for ways to contribute and help out, this document aims to give a few
good starting points.
A good idea is to start by subscribing to the [curl-library mailing
-list](https://cool.haxx.se/mailman/listinfo/curl-library) to keep track of the
+list](https://lists.haxx.se/listinfo/curl-library) to keep track of the
current discussion topics.
## Scratch your own itch
diff --git a/docs/examples/multithread.c b/docs/examples/multithread.c
index ada1e4ac8..003c312cd 100644
--- a/docs/examples/multithread.c
+++ b/docs/examples/multithread.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -41,9 +41,9 @@
*/
const char * const urls[NUMT]= {
"https://curl.se/",
- "ftp://cool.haxx.se/",
- "https://www.cag.se/",
- "www.haxx.se"
+ "ftp://example.com/",
+ "https://example.net/",
+ "www.example"
};
static void *pull_one_url(void *url)