From fd56a8d74b9c1b9f7005fbc003d98f1253cd5eee Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 17 Sep 2021 15:06:51 -0400 Subject: Import LibreSSL 3.4.0 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'VERSION') diff --git a/VERSION b/VERSION index 9c303ae..67e1183 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -3.3.4 +3.4.0 -- cgit 1.4.1 From e68b599d314e314b4b4a78e8c2eee9bd725d453b Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 14 Oct 2021 21:26:33 -0400 Subject: Import LibreSSL 3.4.1 --- VERSION | 2 +- tls.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'VERSION') diff --git a/VERSION b/VERSION index 67e1183..bc5999b 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -3.4.0 +3.4.1 diff --git a/tls.c b/tls.c index 262ec3d..fb8804d 100644 --- a/tls.c +++ b/tls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls.c,v 1.89 2021/02/01 15:35:41 tb Exp $ */ +/* $OpenBSD: tls.c,v 1.90 2021/10/02 09:46:48 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing * @@ -521,7 +521,7 @@ tls_configure_ssl(struct tls *ctx, SSL_CTX *ssl_ctx) } if (ctx->config->verify_time == 0) { - X509_VERIFY_PARAM_set_flags(ssl_ctx->param, + X509_VERIFY_PARAM_set_flags(SSL_CTX_get0_param(ssl_ctx), X509_V_FLAG_NO_CHECK_TIME); } -- cgit 1.4.1 mmit/litterbox.c?h=1.3&id=cbfce1fe0e79f883e9ed03be5cc9203cf93db692&follow=1'>commit diff
Commit message (Collapse)Author
2020-01-10Request the causal.agency/passive capabilityJune McEnroe
This is implemented by pounce and prevents litterbox from affecting the away status of pounce's server connection.
2020-01-04Import getopt_config from pounceJune McEnroe
2020-01-04Add -m regexp option to scoopJune McEnroe
2020-01-04Enable SQLite WALJune McEnroe
2020-01-04Add -N option to litterboxJune McEnroe
2020-01-04Set the default network name to the hostnameJune McEnroe
2020-01-04Clean up unscoop(1) documentationJune McEnroe
2020-01-04Rename unscoop -C to -cJune McEnroe
For consistency with scoop.
2020-01-04Expand scoop(1) documentationJune McEnroe
2020-01-03Improve litterbox(1) documentationJune McEnroe
2020-01-01Add install and uninstall targetsJune McEnroe
2020-01-01Assert that SQL query fits in bufferJune McEnroe
2020-01-01Don't special case user being * in queriesJune McEnroe
It's a side-effect of imports that shouldn't surface elsewhere. Would be nice to have unscoop figure out how it can eliminate using * in more places.
2020-01-01Factor out hashing functionJune McEnroe
2020-01-01Add option for custom where expression to scoopJune McEnroe
2020-01-01Document ENVIRONMENT in scoop(1)June McEnroe
2019-12-31Add before and after optionsJune McEnroe
2019-12-31Add scoop IRC output formatJune McEnroe
2019-12-31Add scoop output format optionJune McEnroe
2019-12-31Refactor scoop formatters and group colored outputJune McEnroe
2019-12-31Add strftime format string optionJune McEnroe
2019-12-31Refactor binding in scoopJune McEnroe
2019-12-31Add option to group events by contextJune McEnroe
2019-12-31Add missing includeJune McEnroe
2019-12-31Use standout mode for highlightingJune McEnroe
2019-12-31Rewrite scoop(1) argument descriptionsJune McEnroe
2019-12-31Color both nicks in a changeJune McEnroe
2019-12-31Implement nick-colored outputJune McEnroe
2019-12-31Only enable highlighting on terminal outputJune McEnroe
2019-12-31Set up pager pipeJune McEnroe
2019-12-30Normalize date inputJune McEnroe
Mostly this just allows the use of 'now'.
2019-12-30Add initial rough version of scoopJune McEnroe
2019-12-30Join with USING wherever possibleJune McEnroe
2019-12-30Add -D flag to prospective scoop manualJune McEnroe
2019-12-30Order results by ID in outer query in litterboxJune McEnroe
2019-12-30Use X macro for Type enumJune McEnroe
2019-12-30Remove scoop -ABCJune McEnroe
I can almost get these to work with an inner and outer SQL query, but when contexts starts overlapping it becomes a disaster, so I'm leavin it out at least for now.
2019-12-30Add limit option for litterbox's search query interfaceJune McEnroe