diff options
author | Veres Lajos <vlajos@gmail.com> | 2013-07-07 22:40:16 +0100 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2013-07-15 00:19:32 -0700 |
commit | 6c4af15d6c87f43ff3902e51e4ad79aa55e60d49 (patch) | |
tree | 397fe32ad6a3bb3ebc481fe858dc632ba3159d7c /ext/openssl/openssl.c | |
parent | 2c8a4af892151f9991345e57d67f27b19b9ff6ef (diff) | |
download | php-git-6c4af15d6c87f43ff3902e51e4ad79aa55e60d49.tar.gz |
typos (orig)
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r-- | ext/openssl/openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index 68f3aaf19b..36efd1b4d2 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -1492,7 +1492,7 @@ PHP_FUNCTION(openssl_spki_verify) pkey = X509_PUBKEY_get(spki->spkac->pubkey); if (pkey == NULL) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to aquire signed public key"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to acquire signed public key"); goto cleanup; } @@ -1549,7 +1549,7 @@ PHP_FUNCTION(openssl_spki_export) pkey = X509_PUBKEY_get(spki->spkac->pubkey); if (pkey == NULL) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to aquire signed public key"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to acquire signed public key"); goto cleanup; } |