fix offsets

Submitted by: Nils Larsch
This commit is contained in:
Bodo Möller 2002-08-26 11:25:14 +00:00
parent d4a8f90cab
commit ad55f581f9

@ -328,13 +328,13 @@ int MAIN(int argc, char **argv)
else else
#endif #endif
#ifndef OPENSSL_NO_ECDSA #ifndef OPENSSL_NO_ECDSA
if (strncmp("ec:",p,4) == 0) if (strncmp("ec:",p,3) == 0)
{ {
X509 *xtmp=NULL; X509 *xtmp=NULL;
EVP_PKEY *dtmp; EVP_PKEY *dtmp;
pkey_type=TYPE_EC; pkey_type=TYPE_EC;
p+=6; p+=3;
if ((in=BIO_new_file(p,"r")) == NULL) if ((in=BIO_new_file(p,"r")) == NULL)
{ {
perror(p); perror(p);