From 5956245d8bc01695eed9e4cb0c26f064a0f3612a Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 5 Mar 2023 13:12:53 +0000 Subject: openssl: make all config structs static These are per-app, so per-file. Most of them already are static, adjust the rest of them. --- src/usr.bin/openssl/req.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/usr.bin/openssl/req.c') diff --git a/src/usr.bin/openssl/req.c b/src/usr.bin/openssl/req.c index 1fa7e368b9..797cbfa718 100644 --- a/src/usr.bin/openssl/req.c +++ b/src/usr.bin/openssl/req.c @@ -1,4 +1,4 @@ -/* $OpenBSD: req.c,v 1.25 2023/03/04 06:25:42 tb Exp $ */ +/* $OpenBSD: req.c,v 1.26 2023/03/05 13:12:53 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -129,7 +129,7 @@ static int duplicated(LHASH_OF(OPENSSL_STRING) *addexts, char *kv); static CONF *req_conf = NULL; static CONF *addext_conf = NULL; -struct { +static struct { LHASH_OF(OPENSSL_STRING) *addexts; BIO *addext_bio; int batch; -- cgit v1.2.3-55-g6feb