summaryrefslogtreecommitdiffstats
path: root/utf8.c
diff options
context:
space:
mode:
authorJosh Soref <jsoref@gmail.com>2023-11-24 04:35:13 +0100
committerJunio C Hamano <gitster@pobox.com>2023-11-26 02:07:05 +0100
commitd05b08cd52cfda627f1d865bdfe6040a2c9521b5 (patch)
tree56990decca453f1be1aaf65044d82251b464fcd8 /utf8.c
parentdoc: update links to current pages (diff)
downloadgit-d05b08cd52cfda627f1d865bdfe6040a2c9521b5.tar.xz
git-d05b08cd52cfda627f1d865bdfe6040a2c9521b5.zip
doc: switch links to https
These sites offer https versions of their content. Using the https versions provides some protection for users. Signed-off-by: Josh Soref <jsoref@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 6a0dd25b0f..6bfaefa28e 100644
--- a/utf8.c
+++ b/utf8.c
@@ -2,7 +2,7 @@
#include "strbuf.h"
#include "utf8.h"
-/* This code is originally from http://www.cl.cam.ac.uk/~mgk25/ucs/ */
+/* This code is originally from https://www.cl.cam.ac.uk/~mgk25/ucs/ */
static const char utf16_be_bom[] = {'\xFE', '\xFF'};
static const char utf16_le_bom[] = {'\xFF', '\xFE'};