diff options
author | Josh Soref <jsoref@gmail.com> | 2023-11-24 04:35:13 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-11-26 02:07:05 +0100 |
commit | d05b08cd52cfda627f1d865bdfe6040a2c9521b5 (patch) | |
tree | 56990decca453f1be1aaf65044d82251b464fcd8 /utf8.c | |
parent | doc: update links to current pages (diff) | |
download | git-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'}; |