diff options
Diffstat (limited to 'src/usr.bin/openssl/x509.c')
-rw-r--r-- | src/usr.bin/openssl/x509.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/usr.bin/openssl/x509.c b/src/usr.bin/openssl/x509.c index c777ee9b74..e1c69c6798 100644 --- a/src/usr.bin/openssl/x509.c +++ b/src/usr.bin/openssl/x509.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509.c,v 1.29 2021/12/12 20:34:04 tb Exp $ */ | 1 | /* $OpenBSD: x509.c,v 1.30 2022/11/11 17:07:39 joshua 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 | * |
@@ -735,11 +735,9 @@ x509_main(int argc, char **argv) | |||
735 | CONF *extconf = NULL; | 735 | CONF *extconf = NULL; |
736 | char *passin = NULL; | 736 | char *passin = NULL; |
737 | 737 | ||
738 | if (single_execution) { | 738 | if (pledge("stdio cpath wpath rpath tty", NULL) == -1) { |
739 | if (pledge("stdio cpath wpath rpath tty", NULL) == -1) { | 739 | perror("pledge"); |
740 | perror("pledge"); | 740 | exit(1); |
741 | exit(1); | ||
742 | } | ||
743 | } | 741 | } |
744 | 742 | ||
745 | memset(&x509_config, 0, sizeof(x509_config)); | 743 | memset(&x509_config, 0, sizeof(x509_config)); |