View | Details | Raw Unified | Return to bug 274414 | Differences between
and this patch

Collapse All | Expand All

(-)b/www/lagrange/Makefile (-1 / +1 lines)
Lines 1-5 Link Here
1
PORTNAME=	lagrange
1
PORTNAME=	lagrange
2
DISTVERSION=	1.16.5
2
DISTVERSION=	1.17.0
3
CATEGORIES=	www
3
CATEGORIES=	www
4
MASTER_SITES=	https://git.skyjake.fi/gemini/${PORTNAME}/releases/download/v${DISTVERSION}/
4
MASTER_SITES=	https://git.skyjake.fi/gemini/${PORTNAME}/releases/download/v${DISTVERSION}/
5
5
(-)b/www/lagrange/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1689437065
1
TIMESTAMP = 1697051596
2
SHA256 (lagrange-1.16.5.tar.gz) = c8d37a32d99ff444e4e61d73269f6244e08a5232c91bb97e2b74823dc6e29d53
2
SHA256 (lagrange-1.17.0.tar.gz) = c0f68e7d8d7b4a94eeaaf2c041f08b13abc2a2922b2485d69844b823e710cc8a
3
SIZE (lagrange-1.16.5.tar.gz) = 10141202
3
SIZE (lagrange-1.17.0.tar.gz) = 10139918
(-)b/www/lagrange/files/patch-lib_the__Foundation_src_tlsrequest.c (-25 / +3 lines)
Lines 1-18 Link Here
1
--- lib/the_Foundation/src/tlsrequest.c.orig	2023-08-07 17:23:22 UTC
1
--- lib/the_Foundation/src/tlsrequest.c.orig	2023-10-11 15:18:41.921403000 -0400
2
+++ lib/the_Foundation/src/tlsrequest.c
2
+++ lib/the_Foundation/src/tlsrequest.c	2023-10-11 15:20:53.410524000 -0400
3
@@ -72,9 +72,9 @@ static iBool readAllFromBIO_(BIO *bio, iBlock *out) {
3
@@ -249,7 +249,9 @@
4
 /*----------------------------------------------------------------------------------------------*/
5
 
6
 iDeclareClass(CachedSession)
7
-    
8
+
9
 static const int maxSessionAge_CachedSession_ = 10 * 60; /* seconds */
10
-    
11
+
12
 struct Impl_CachedSession {
13
     iObject          object;
14
     iBlock           pemSession;
15
@@ -249,7 +249,9 @@ void init_Context(iContext *d) {
16
     SSL_load_error_strings();
4
     SSL_load_error_strings();
17
     ERR_load_crypto_strings();
5
     ERR_load_crypto_strings();
18
 #endif
6
 #endif
Lines 22-33 Link Here
22
     d->ctx = SSL_CTX_new(TLS_client_method());
10
     d->ctx = SSL_CTX_new(TLS_client_method());
23
     if (!d->ctx) {
11
     if (!d->ctx) {
24
         iDebug("[TlsRequest] failed to initialize OpenSSL\n");
12
         iDebug("[TlsRequest] failed to initialize OpenSSL\n");
25
@@ -1012,7 +1014,7 @@ static iBool readIncoming_TlsRequest_(iTlsRequest *d) 
26
 
27
 static iThreadResult run_TlsRequest_(iThread *thread) {
28
     iTlsRequest *d = userData_Thread(thread);
29
-    /* Thread-local pointer to the current request so it can be accessed in the 
30
+    /* Thread-local pointer to the current request so it can be accessed in the
31
        verify callback. */
32
     iDebug("[TlsRequest] run_TlsRequest_: %zu bytes to send\n", size_Block(&d->sending));
33
     setCurrentRequestForThread_Context_(context_, d);
34
- 

Return to bug 274414