From: foobar Date: Tue, 23 Sep 2003 19:29:34 +0000 (+0000) Subject: Fixed typo. X-Git-Tag: RELEASE_1_3b2~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08effa1b04746fce02a2c89f8981899a4116452c;p=php Fixed typo. --- diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index acb11ea0e5..f6765e5c87 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1743,7 +1743,7 @@ static EVP_PKEY * php_openssl_evp_from_zval(zval ** val, int public_key, char * is_priv = php_openssl_is_private_key((EVP_PKEY*)what TSRMLS_CC); /* check whether it is actually a private key if requested */ - if (!public_key && !ispriv) { + if (!public_key && !is_priv) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "supplied key param is a public key"); return NULL; }