summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorderaadt <>2024-07-09 11:21:44 +0000
committerderaadt <>2024-07-09 11:21:44 +0000
commit8aadf3301a1f0979bae110402647426b46fff812 (patch)
tree35ea2561dda44df69245798861d4e5d229a4785f
parent52087979e94997f69f3bdb9c3b17cb23d5c90733 (diff)
downloadopenbsd-8aadf3301a1f0979bae110402647426b46fff812.tar.gz
openbsd-8aadf3301a1f0979bae110402647426b46fff812.tar.bz2
openbsd-8aadf3301a1f0979bae110402647426b46fff812.zip
do not need to force bss values to 0
-rw-r--r--src/usr.bin/openssl/speed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/speed.c b/src/usr.bin/openssl/speed.c
index 2acdaeddfe..f1916efe1c 100644
--- a/src/usr.bin/openssl/speed.c
+++ b/src/usr.bin/openssl/speed.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: speed.c,v 1.36 2024/07/09 07:51:09 deraadt Exp $ */ 1/* $OpenBSD: speed.c,v 1.37 2024/07/09 11:21:44 deraadt Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -150,7 +150,7 @@
150#include "./testrsa.h" 150#include "./testrsa.h"
151 151
152#define BUFSIZE (1024*8+64) 152#define BUFSIZE (1024*8+64)
153volatile sig_atomic_t run = 0; 153volatile sig_atomic_t run;
154 154
155static int mr = 0; 155static int mr = 0;
156static int usertime = 1; 156static int usertime = 1;