diff options
author | David Goulet <dgoulet@torproject.org> | 2022-01-18 13:15:29 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2022-01-18 13:15:29 -0500 |
commit | ec5611e876b5e32dbf241ded13311e1532791876 (patch) | |
tree | 6af3e718a3567ee9d5372236528eec4c02b170bf | |
parent | 7d9d769123c33a88b6f441e19faf56c2c1e5931c (diff) | |
parent | 49c758af47ce5e45154dbf445519b422d79f30ad (diff) | |
download | tor-ec5611e876b5e32dbf241ded13311e1532791876.tar.gz tor-ec5611e876b5e32dbf241ded13311e1532791876.zip |
Merge branch 'maint-0.4.5' into maint-0.4.6
-rw-r--r-- | changes/ticket40544 | 3 | ||||
-rw-r--r-- | src/app/main/main.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/ticket40544 b/changes/ticket40544 new file mode 100644 index 0000000000..b0754f0fd4 --- /dev/null +++ b/changes/ticket40544 @@ -0,0 +1,3 @@ + o Minor bugfix (logging): + - Update a log notice dead URL to a working one. Fixes bug 40544; bugfix on + 0.3.5.1-alpha. diff --git a/src/app/main/main.c b/src/app/main/main.c index 89564490e6..bc9d535a07 100644 --- a/src/app/main/main.c +++ b/src/app/main/main.c @@ -594,7 +594,7 @@ tor_init(int argc, char *argv[]) log_notice(LD_GENERAL, "Tor can't help you if you use it wrong! " "Learn how to be safe at " - "https://www.torproject.org/download/download#warning"); + "https://support.torproject.org/faq/staying-anonymous/"); if (strstr(version, "alpha") || strstr(version, "beta")) log_notice(LD_GENERAL, "This version is not a stable Tor release. " |