diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-07-09 11:21:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2024-07-09 11:21:45 +0000 |
commit | 09d51456aae601ef485fb7f79d5df1c31c9fc04b (patch) | |
tree | aad93ac8493fbe2dfc0b735ee36f6d5ef9195080 /usr.bin/openssl | |
parent | 8ec22f206d7a2e0977f9d1eb27d5aba85ede9492 (diff) |
do not need to force bss values to 0
Diffstat (limited to 'usr.bin/openssl')
-rw-r--r-- | usr.bin/openssl/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/speed.c b/usr.bin/openssl/speed.c index 2acdaeddfef..f1916efe1c0 100644 --- a/usr.bin/openssl/speed.c +++ b/usr.bin/openssl/speed.c @@ -1,4 +1,4 @@ -/* $OpenBSD: speed.c,v 1.36 2024/07/09 07:51:09 deraadt Exp $ */ +/* $OpenBSD: speed.c,v 1.37 2024/07/09 11:21:44 deraadt Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -150,7 +150,7 @@ #include "./testrsa.h" #define BUFSIZE (1024*8+64) -volatile sig_atomic_t run = 0; +volatile sig_atomic_t run; static int mr = 0; static int usertime = 1; |