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/
```
This commit is contained in:
Alcaparra 2022-05-12 11:35:47 +00:00 committed by Andy Ritger
parent ce3d74ff6b
commit 570b630d28

View File

@ -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 "
"<http://www.nvidia.com/object/quadro-sync.html> "
"<https://www.nvidia.com/object/quadro-sync.html> "
"for instructions on installing the correct firmware.");
goto fail;
}