diff options
Diffstat (limited to 'external/curl')
-rw-r--r-- | external/curl/UnpackedTarball_curl.mk | 1 | ||||
-rw-r--r-- | external/curl/curl-debug.patch.1 | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/external/curl/UnpackedTarball_curl.mk b/external/curl/UnpackedTarball_curl.mk index 2cdfbfc08632..642dd3113730 100644 --- a/external/curl/UnpackedTarball_curl.mk +++ b/external/curl/UnpackedTarball_curl.mk @@ -24,6 +24,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,curl,\ external/curl/curl-msvc-disable-protocols.patch.1 \ external/curl/curl-7.26.0_win-proxy.patch \ external/curl/zlib.patch.0 \ + external/curl/curl-debug.patch.1 \ )) ifeq ($(SYSTEM_NSS),) diff --git a/external/curl/curl-debug.patch.1 b/external/curl/curl-debug.patch.1 new file mode 100644 index 000000000000..a000913ed335 --- /dev/null +++ b/external/curl/curl-debug.patch.1 @@ -0,0 +1,11 @@ +--- curl/lib/vtls/nss.c.orig 2021-10-01 17:34:59.302663021 +0200 ++++ curl/lib/vtls/nss.c 2021-10-01 17:35:55.376666010 +0200 +@@ -955,7 +955,7 @@ + subject = CERT_NameToAscii(&cert->subject); + issuer = CERT_NameToAscii(&cert->issuer); + common_name = CERT_GetCommonName(&cert->subject); +- infof(data, "subject: %s\n", subject); ++ infof(data, "subject: %s", subject); + + CERT_GetCertTimes(cert, ¬Before, ¬After); + PR_ExplodeTime(notBefore, PR_GMTParameters, &printableTime); |