summaryrefslogtreecommitdiff
path: root/t/helper/test-regex.c
diff options
context:
space:
mode:
authorJosh Soref <jsoref@gmail.com>2023-11-24 03:35:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2023-11-26 01:07:05 (GMT)
commitd05b08cd52cfda627f1d865bdfe6040a2c9521b5 (patch)
tree56990decca453f1be1aaf65044d82251b464fcd8 /t/helper/test-regex.c
parent65175d9ea26bebeb9d69977d0e75efc0e88dbced (diff)
downloadgit-d05b08cd52cfda627f1d865bdfe6040a2c9521b5.zip
git-d05b08cd52cfda627f1d865bdfe6040a2c9521b5.tar.gz
git-d05b08cd52cfda627f1d865bdfe6040a2c9521b5.tar.bz2
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 't/helper/test-regex.c')
-rw-r--r--t/helper/test-regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/helper/test-regex.c b/t/helper/test-regex.c
index bd871a7..80042ea 100644
--- a/t/helper/test-regex.c
+++ b/t/helper/test-regex.c
@@ -30,7 +30,7 @@ static int test_regex_bug(void)
if (regexec(&r, str, 1, m, 0))
die("no match of pattern '%s' to string '%s'", pat, str);
- /* http://sourceware.org/bugzilla/show_bug.cgi?id=3957 */
+ /* https://sourceware.org/bugzilla/show_bug.cgi?id=3957 */
if (m[0].rm_so == 3) /* matches '\n' when it should not */
die("regex bug confirmed: re-build git with NO_REGEX=1");