commit 8b2ee1ae14ac9b438a93883d3b80dd27d0b13704 from: op date: Fri Apr 3 09:36:21 2026 UTC remove dup block that tries to close tls client ca fd it's already closed and fd set to -1 a few lines above. diff from Marc Jorge (openbsd [at] cypher-fox com), thanks! commit - 88acf51a5d44a2359a94678d631e30ea6bff41fe commit + 8b2ee1ae14ac9b438a93883d3b80dd27d0b13704 blob - 60bdb00b63babb44353e19f25009d86ba1a91a20 blob + 0c5cc26c7f10c00615d2e5fb4232cd279d5d2e27 --- config.c +++ config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.48 2026/03/02 19:28:01 rsadowski Exp $ */ +/* $OpenBSD: config.c,v 1.49 2026/04/03 09:36:21 op Exp $ */ /* * Copyright (c) 2011 - 2014 Reyk Floeter @@ -1025,10 +1025,6 @@ config_setrelay(struct relayd *env, struct relay *rlay cert->cert_ocsp_fd = -1; } } - if (rlay->rl_tls_client_ca_fd != -1) { - close(rlay->rl_tls_client_ca_fd); - rlay->rl_tls_client_ca_fd = -1; - } return (0); }