From 570b630d28ee753ab8ac429b2cdff645c2746654 Mon Sep 17 00:00:00 2001 From: Alcaparra <105424007+alcaparra@users.noreply.github.com> Date: Thu, 12 May 2022 11:35:47 +0000 Subject: [PATCH] Update HTTP link to HTTPS http://www.nvidia.com redirects to https://www.nvidia.com/, so linking to http is reduntant. More importantly, it could be considered a security issue, do to the nature of plain http. An attacker could perform a MITM attack and redirect the HTTP request to a malicious website. ``` > GET / HTTP/1.1 > Host: www.nvidia.com Response: < HTTP/1.1 307 Temporary Redirect < Location: https://www.nvidia.com/ ``` --- src/nvidia-modeset/src/nvkms-framelock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvidia-modeset/src/nvkms-framelock.c b/src/nvidia-modeset/src/nvkms-framelock.c index cfb00e25f..e6772f9e7 100644 --- a/src/nvidia-modeset/src/nvkms-framelock.c +++ b/src/nvidia-modeset/src/nvkms-framelock.c @@ -459,7 +459,7 @@ static NVFrameLockEvoPtr AllocFrameLockEvo(NVDevEvoPtr pDevEvo, nvEvoLogDev(pDevEvo, EVO_LOG_ERROR, "The firmware on this Quadro Sync " "card is not compatible with the GPUs connected to it." " Please visit " - " " + " " "for instructions on installing the correct firmware."); goto fail; }