aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2001-07-02 12:50:30 +0000
committerBen Laurie <ben@openssl.org>2001-07-02 12:50:30 +0000
commita169e82065a8272640c670822eaf34447840092f (patch)
tree1def44031dff1830703dfe563ba56e4ffda2b006 /apps
parentc80410c50cd33972c9ea2c91171c9c7685eac4a1 (diff)
downloadopenssl-a169e82065a8272640c670822eaf34447840092f.tar.gz
Fix warning.
Diffstat (limited to 'apps')
-rw-r--r--apps/req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/req.c b/apps/req.c
index f534e3af20..cc21f063c9 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -152,7 +152,7 @@ int MAIN(int argc, char **argv)
X509 *x509ss=NULL;
X509_REQ *req=NULL;
EVP_PKEY *pkey=NULL;
- int i,badops=0,newreq=0,verbose=0,pkey_type=TYPE_RSA;
+ int i=0,badops=0,newreq=0,verbose=0,pkey_type=TYPE_RSA;
long newkey = -1;
BIO *in=NULL,*out=NULL;
int informat,outformat,verify=0,noout=0,text=0,keyform=FORMAT_PEM;