diff options
author | tb <> | 2024-07-13 16:43:56 +0000 |
---|---|---|
committer | tb <> | 2024-07-13 16:43:56 +0000 |
commit | 619acf361b7374579dfd97deb36c2a1c70d560d0 (patch) | |
tree | 43a716b97e67232abbebbd5a2317034d04693b0d | |
parent | de05eb4f597b95fed408db9aa9e9474eb6daf5e6 (diff) | |
download | openbsd-619acf361b7374579dfd97deb36c2a1c70d560d0.tar.gz openbsd-619acf361b7374579dfd97deb36c2a1c70d560d0.tar.bz2 openbsd-619acf361b7374579dfd97deb36c2a1c70d560d0.zip |
Move the sigaction next to multi
Reduces diff in -portable
-rw-r--r-- | src/usr.bin/openssl/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/speed.c b/src/usr.bin/openssl/speed.c index 08d19c9795..4e8814cea0 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.38 2024/07/12 07:15:28 deraadt Exp $ */ | 1 | /* $OpenBSD: speed.c,v 1.39 2024/07/13 16:43:56 tb 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 | * |
@@ -431,8 +431,8 @@ speed_main(int argc, char **argv) | |||
431 | const EVP_MD *evp_md = NULL; | 431 | const EVP_MD *evp_md = NULL; |
432 | int decrypt = 0; | 432 | int decrypt = 0; |
433 | int multi = 0; | 433 | int multi = 0; |
434 | const char *errstr = NULL; | ||
435 | struct sigaction sa; | 434 | struct sigaction sa; |
435 | const char *errstr = NULL; | ||
436 | 436 | ||
437 | if (pledge("stdio proc", NULL) == -1) { | 437 | if (pledge("stdio proc", NULL) == -1) { |
438 | perror("pledge"); | 438 | perror("pledge"); |