diff options
author | Bodo Möller <bodo@openssl.org> | 2002-03-14 10:52:03 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2002-03-14 10:52:03 +0100 |
commit | 690ecff7953193cc8e66b588216805f3014df778 (patch) | |
tree | c21fb14c3d0b01ae50dd4c9d8a485b8824d78e35 /apps/pkcs8.c | |
parent | use BIO_nwrite() more properly to demonstrate the general idea of (diff) | |
download | openssl-690ecff7953193cc8e66b588216805f3014df778.tar.xz openssl-690ecff7953193cc8e66b588216805f3014df778.zip |
Fixes for 'no-hw' combined with 'no-SOME_CIPHER'.
Fix dsaparam usage output.
Submitted by: Nils Larsch
Diffstat (limited to 'apps/pkcs8.c')
-rw-r--r-- | apps/pkcs8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/pkcs8.c b/apps/pkcs8.c index ea8c04dffa..ba91caee6b 100644 --- a/apps/pkcs8.c +++ b/apps/pkcs8.c @@ -83,7 +83,7 @@ int MAIN(int argc, char **argv) int nocrypt = 0; X509_SIG *p8; PKCS8_PRIV_KEY_INFO *p8inf; - EVP_PKEY *pkey; + EVP_PKEY *pkey=NULL; char pass[50], *passin = NULL, *passout = NULL, *p8pass = NULL; int badarg = 0; char *engine=NULL; |