summaryrefslogtreecommitdiff
path: root/ui/help_url.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-03-10 10:46:50 -0700
committerGerald Combs <gerald@wireshark.org>2015-03-10 19:30:50 +0000
commitcac102eee3db8d498b1e2d91ee2b49cfe4f531e4 (patch)
tree7c96252e392c297c813265f031ecf637bde7f623 /ui/help_url.c
parent7f61e90eebddb7244c66bf94c970a5fd44781cb2 (diff)
downloadwireshark-cac102eee3db8d498b1e2d91ee2b49cfe4f531e4.tar.gz
Change a lot of http:// URLs to https://.
Most of our sites are now HTTPS-only. Update URLs accordingly. Update other URLs while we're at it. Remove or comment out dead links. Change-Id: I7c4f323e6585d22760bb90bf28fc0faa6b893a33 Reviewed-on: https://code.wireshark.org/review/7621 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/help_url.c')
-rw-r--r--ui/help_url.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/ui/help_url.c b/ui/help_url.c
index 0f9520a1b1..9cf9aa0592 100644
--- a/ui/help_url.c
+++ b/ui/help_url.c
@@ -73,40 +73,40 @@ topic_online_url(topic_action_e action)
{
switch(action) {
case(ONLINEPAGE_HOME):
- return "http://www.wireshark.org";
+ return "https://www.wireshark.org";
break;
case(ONLINEPAGE_WIKI):
- return "http://wiki.wireshark.org";
+ return "https://wiki.wireshark.org";
break;
case(ONLINEPAGE_DOWNLOAD):
- return "http://www.wireshark.org/download.html";
+ return "https://www.wireshark.org/download.html";
break;
case(ONLINEPAGE_USERGUIDE):
- return "http://www.wireshark.org/docs/wsug_html_chunked/";
+ return "https://www.wireshark.org/docs/wsug_html_chunked/";
break;
case(ONLINEPAGE_FAQ):
return "http://www.wireshark.org/faq.html";
break;
case(ONLINEPAGE_ASK):
- return "http://ask.wireshark.org";
+ return "https://ask.wireshark.org";
break;
case(ONLINEPAGE_SAMPLE_FILES):
- return "http://wiki.wireshark.org/SampleCaptures";
+ return "https://wiki.wireshark.org/SampleCaptures";
break;
case(ONLINEPAGE_CAPTURE_SETUP):
- return "http://wiki.wireshark.org/CaptureSetup";
+ return "https://wiki.wireshark.org/CaptureSetup";
break;
case(ONLINEPAGE_NETWORK_MEDIA):
- return "http://wiki.wireshark.org/CaptureSetup/NetworkMedia";
+ return "https://wiki.wireshark.org/CaptureSetup/NetworkMedia";
break;
case(ONLINEPAGE_SAMPLE_CAPTURES):
- return "http://wiki.wireshark.org/SampleCaptures";
+ return "https://wiki.wireshark.org/SampleCaptures";
break;
case(ONLINEPAGE_SECURITY):
- return "http://wiki.wireshark.org/Security";
+ return "https://wiki.wireshark.org/Security";
break;
case(ONLINEPAGE_CHIMNEY):
- return "http://wiki.wireshark.org/CaptureSetup/Offloading#chimney";
+ return "https://wiki.wireshark.org/CaptureSetup/Offloading#chimney";
break;
default:
return NULL;