summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/prime.c
diff options
context:
space:
mode:
authortb <>2023-03-05 13:12:53 +0000
committertb <>2023-03-05 13:12:53 +0000
commit526ac760d941819bc6d2eefe70bf7c9c5562bc26 (patch)
tree76b19fa54b61adaa3e661c0edbe7db993a361a76 /src/usr.bin/openssl/prime.c
parent4e7dac33e741d0213d9a2de12665bb52a037a8ff (diff)
downloadopenbsd-526ac760d941819bc6d2eefe70bf7c9c5562bc26.tar.gz
openbsd-526ac760d941819bc6d2eefe70bf7c9c5562bc26.tar.bz2
openbsd-526ac760d941819bc6d2eefe70bf7c9c5562bc26.zip
openssl: make all config structs static
These are per-app, so per-file. Most of them already are static, adjust the rest of them.
Diffstat (limited to 'src/usr.bin/openssl/prime.c')
-rw-r--r--src/usr.bin/openssl/prime.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/prime.c b/src/usr.bin/openssl/prime.c
index d42ac20f1c..64b1953e33 100644
--- a/src/usr.bin/openssl/prime.c
+++ b/src/usr.bin/openssl/prime.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: prime.c,v 1.15 2022/12/26 19:32:30 jmc Exp $ */ 1/* $OpenBSD: prime.c,v 1.16 2023/03/05 13:12:53 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2004 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -56,7 +56,7 @@
56#include <openssl/bn.h> 56#include <openssl/bn.h>
57#include <openssl/err.h> 57#include <openssl/err.h>
58 58
59struct { 59static struct {
60 int bits; 60 int bits;
61 int checks; 61 int checks;
62 int generate; 62 int generate;