summaryrefslogtreecommitdiffstats
path: root/crypto/pem/pvkfmt.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-12-08 00:11:47 +0100
committerRichard Levitte <levitte@openssl.org>2015-12-08 00:11:47 +0100
commit3cb9fd97ced4a74ba5d4751c455146899164a202 (patch)
tree4984de79d0cf6f9f3a24a78040b4077c3f4e91ec /crypto/pem/pvkfmt.c
parent47abe380042cad34b78a1a9c7c18995f3e8f8ad2 (diff)
Remove double semi (;)
When in the middle of declarations, some C compilers will complain. Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/pem/pvkfmt.c')
-rw-r--r--crypto/pem/pvkfmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pem/pvkfmt.c b/crypto/pem/pvkfmt.c
index c95967cae1..58cbd07475 100644
--- a/crypto/pem/pvkfmt.c
+++ b/crypto/pem/pvkfmt.c
@@ -650,7 +650,7 @@ static int derive_pvk_key(unsigned char *key,
const unsigned char *salt, unsigned int saltlen,
const unsigned char *pass, int passlen)
{
- EVP_MD_CTX *mctx = EVP_MD_CTX_new();;
+ EVP_MD_CTX *mctx = EVP_MD_CTX_new();
int rv = 1;
if (mctx == NULL
|| !EVP_DigestInit_ex(mctx, EVP_sha1(), NULL)