From: op Date: Tue, 11 Jun 2024 16:35:24 +0000 (+0000) Subject: sync includes in tls_signer.c X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8e652f1740c86323e13ef461f7c5ec9d380cb333;p=openbsd sync includes in tls_signer.c pthread -> mutex stdint -> uint8_t stdio.h -> asprintf stdlib.h -> calloc string.h -> memcpy ecdsa -> ECDSA_METHOD leftover, remove ec -> EC_KEY evp -> EVP_PKEY pem -> PEM_read_bio_X509 x509 -> X509 90% of the diff is from tb@, I only spotted the missing string.h :) ok tb@ --- diff --git a/lib/libtls/tls_signer.c b/lib/libtls/tls_signer.c index d423b3b1c82..2573803ec1c 100644 --- a/lib/libtls/tls_signer.c +++ b/lib/libtls/tls_signer.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls_signer.c,v 1.12 2024/03/28 06:55:02 joshua Exp $ */ +/* $OpenBSD: tls_signer.c,v 1.13 2024/06/11 16:35:24 op Exp $ */ /* * Copyright (c) 2021 Eric Faurot * @@ -16,10 +16,19 @@ */ #include - -#include +#include +#include +#include +#include +#include + +#include +#include #include +#include +#include #include +#include #include "tls.h" #include "tls_internal.h"