diff options
author | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-02-05 16:56:08 +0100 |
---|---|---|
committer | Tim Rühsen <tim.ruehsen@gmx.de> | 2019-03-13 10:59:34 +0100 |
commit | 699cd8bd5a8e6d7eea28842e2011a25e1963daf6 (patch) | |
tree | 4e409afffc9bccf8e1932d39414035f16b1ed4b6 /guile | |
parent | 8e749db3721ce77b43c157bb1cd200ad0ad1197d (diff) | |
download | gnutls-699cd8bd5a8e6d7eea28842e2011a25e1963daf6.tar.gz |
Use https:// for arbitrary files #1
Signed-off-by: Tim Rühsen <tim.ruehsen@gmx.de>
Diffstat (limited to 'guile')
-rw-r--r-- | guile/Makefile.am | 2 | ||||
-rw-r--r-- | guile/modules/system/documentation/README | 2 | ||||
-rw-r--r-- | guile/src/Makefile.am | 4 | ||||
-rw-r--r-- | guile/src/core.c | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/guile/Makefile.am b/guile/Makefile.am index 95fa96c66b..1d554a1f7a 100644 --- a/guile/Makefile.am +++ b/guile/Makefile.am @@ -74,7 +74,7 @@ AM_V_GUILEC_0 = @echo " GUILEC " $@; # Unset 'GUILE_LOAD_COMPILED_PATH' so we can be sure that any .go file that we # load comes from the build directory. # XXX: Use the C locale for when Guile lacks -# <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>. +# <https://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>. %.go: %.scm modules/gnutls.scm $(AM_V_GUILEC)$(MKDIR_P) "`dirname "$@"`" ; \ $(AM_V_P) && out=1 || out=- ; \ diff --git a/guile/modules/system/documentation/README b/guile/modules/system/documentation/README index de45e2e503..d8dba12983 100644 --- a/guile/modules/system/documentation/README +++ b/guile/modules/system/documentation/README @@ -7,7 +7,7 @@ in Guile terms. They were stolen from Guile-Reader 0.3: - http://www.nongnu.org/guile-reader/ + https://www.nongnu.org/guile-reader/ It was only slightly modified. diff --git a/guile/src/Makefile.am b/guile/src/Makefile.am index 177a8618c3..78f0143b27 100644 --- a/guile/src/Makefile.am +++ b/guile/src/Makefile.am @@ -38,7 +38,7 @@ guileextension_LTLIBRARIES = guile-gnutls-v-2.la # Use '-module' to build a "dlopenable module", in Libtool terms. # Use '-undefined' to placate Libtool on Windows; see -# <http://lists.gnutls.org/pipermail/gnutls-devel/2014-December/007294.html>. +# <https://lists.gnutls.org/pipermail/gnutls-devel/2014-December/007294.html>. guile_gnutls_v_2_la_LDFLAGS = -module -no-undefined # Linking against GnuTLS. @@ -113,7 +113,7 @@ snarfcppopts = $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ # Note: we cannot use the portable ".c.x" form, since that leads # prerequisites to be ignored: -# <http://lists.gnutls.org/pipermail/gnutls-devel/2013-September/006453.html>. +# <https://lists.gnutls.org/pipermail/gnutls-devel/2013-September/006453.html>. %.x: %.c $(GENERATED_BINDINGS) $(AM_V_GEN)$(guile_snarf) -o $@ $< $(snarfcppopts) diff --git a/guile/src/core.c b/guile/src/core.c index 0b209f1fa4..546d63a1e3 100644 --- a/guile/src/core.c +++ b/guile/src/core.c @@ -2404,7 +2404,7 @@ SCM_DEFINE (scm_gnutls_x509_certificate_dn, "x509-certificate-dn", (SCM cert), "Return the distinguished name (DN) of X.509 certificate " "@var{cert}. The form of the DN is as described in @uref{" - "http://tools.ietf.org/html/rfc2253, RFC 2253}.") + "https://tools.ietf.org/html/rfc2253, RFC 2253}.") #define FUNC_NAME s_scm_gnutls_x509_certificate_dn { X509_CERTIFICATE_DN_FUNCTION_BODY (gnutls_x509_crt_get_dn); @@ -2510,7 +2510,7 @@ SCM_DEFINE (scm_gnutls_x509_certificate_matches_hostname_p, (SCM cert, SCM hostname), "Return true if @var{cert} matches @var{hostname}, a string " "denoting a DNS host name. This is the basic implementation " - "of @uref{http://tools.ietf.org/html/rfc2818, RFC 2818} (aka. " + "of @uref{https://tools.ietf.org/html/rfc2818, RFC 2818} (aka. " "HTTPS).") #define FUNC_NAME s_scm_gnutls_x509_certificate_matches_hostname_p { |