diff options
author | Stig Venaas <venaas@php.net> | 2000-11-17 19:17:07 +0000 |
---|---|---|
committer | Stig Venaas <venaas@php.net> | 2000-11-17 19:17:07 +0000 |
commit | 8b500cdcdfb111546c98fb62e61b8e1879857bdb (patch) | |
tree | afde1ed97d85f99a9fd43188aee4791cfb6ba461 /ext/openssl/php_openssl.h | |
parent | 5767ab3f75ceb80666972ccd92aa04a46db12ecb (diff) | |
download | php-git-8b500cdcdfb111546c98fb62e61b8e1879857bdb.tar.gz |
Renamed openssl_read_privatekey openssl_get_privatekey, and some minor
fixes including init and shutdown functions
Diffstat (limited to 'ext/openssl/php_openssl.h')
-rw-r--r-- | ext/openssl/php_openssl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/openssl/php_openssl.h b/ext/openssl/php_openssl.h index 3740a8f177..1c9a418a09 100644 --- a/ext/openssl/php_openssl.h +++ b/ext/openssl/php_openssl.h @@ -26,8 +26,9 @@ extern zend_module_entry openssl_module_entry; #define phpext_openssl_ptr &openssl_module_entry PHP_MINIT_FUNCTION(openssl); +PHP_MSHUTDOWN_FUNCTION(openssl); PHP_MINFO_FUNCTION(openssl); -PHP_FUNCTION(openssl_read_privatekey); +PHP_FUNCTION(openssl_get_privatekey); PHP_FUNCTION(openssl_get_publickey); PHP_FUNCTION(openssl_free_key); #if 0 |