aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2019-07-27 15:53:22 -0700
committerGuy Harris <guy@alum.mit.edu>2019-07-27 22:56:35 +0000
commit245086eb8382bca3c134a4fd7507c185246127e2 (patch)
treec98aa3acbba0afefeb8a8d90f580ec9c8d787731 /version_info.c
parentcdee223c32be1a48174aa2a0149c8e2d22cc7887 (diff)
HTTPS In Still More Places, update more URLs.
Microsoft reshuffled their documentation - almost all of it moved from msdn.microsoft.com to docs.microsoft.com. Some blogs moved to devblogs.microsoft.com; the comments *didn't* move, so in one case we go to the Wayback Machine - the link isn't dead, but it formats horribly, at least on my browser, but the archived version formats OK. Use the Wayback Machine for some URLs, and update others. Update the sections for MS-ADTS. Point to the HTML versions of some RFCs and I-Ds. Change-Id: I344b20f880de63f1ae2a4e3f9ff98af78a7fe139 Reviewed-on: https://code.wireshark.org/review/34101 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/version_info.c b/version_info.c
index 124553d613..928214a8c0 100644
--- a/version_info.c
+++ b/version_info.c
@@ -255,7 +255,7 @@ get_compiler_info(GString *str)
#define COMPILER_BUILD_NUMBER (_MSC_FULL_VER % 100000)
/*
- * From https://blogs.msdn.microsoft.com/vcblog/2014/11/17/c111417-features-in-vs-2015-preview/
+ * From https://web.archive.org/web/20190125151548/https://blogs.msdn.microsoft.com/vcblog/2014/11/17/c111417-features-in-vs-2015-preview/
*
* Bakersfield: DevDiv's upper management determines the scheduling
* of new major versions. They also decided to increment the product
@@ -271,7 +271,7 @@ get_compiler_info(GString *str)
#if VCPP_MAJOR_VERSION == 14
/*
- * From https://blogs.msdn.microsoft.com/vcblog/2017/11/15/side-by-side-minor-version-msvc-toolsets-in-visual-studio-2017/:
+ * From https://devblogs.microsoft.com/cppblog/side-by-side-minor-version-msvc-toolsets-in-visual-studio-2017/
*
* We've been delivering improvements to Visual Studio 2017 more
* frequently than ever before. Since its first release in March
@@ -420,7 +420,7 @@ get_runtime_version_info(void (*additional_info)(GString *))
*
* On Windows get_locale returns the full language, country
* name, and code page, e.g. "English_United States.1252":
- * https://msdn.microsoft.com/en-us/library/x99tb11d.aspx
+ * https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/setlocale-wsetlocale?view=vs-2019
*/
if ((lang = get_locale()) != NULL) {
g_string_append_printf(str, ", with locale %s", lang);