summaryrefslogtreecommitdiff
path: root/src/usr.bin/openssl/rand.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/rand.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/rand.c')
-rw-r--r--src/usr.bin/openssl/rand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/rand.c b/src/usr.bin/openssl/rand.c
index 6e67cf28e7..6ae6a8d8ee 100644
--- a/src/usr.bin/openssl/rand.c
+++ b/src/usr.bin/openssl/rand.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rand.c,v 1.15 2022/11/11 17:07:39 joshua Exp $ */ 1/* $OpenBSD: rand.c,v 1.16 2023/03/05 13:12:53 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -62,7 +62,7 @@
62#include <openssl/bio.h> 62#include <openssl/bio.h>
63#include <openssl/err.h> 63#include <openssl/err.h>
64 64
65struct { 65static struct {
66 int base64; 66 int base64;
67 int hex; 67 int hex;
68 char *outfile; 68 char *outfile;