diff options
author | Remi Collet <remi@remirepo.net> | 2024-08-28 16:31:59 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-08-28 16:31:59 +0200 |
commit | 74e9e4618200825ddf3dbaa2ed85a32949c89147 (patch) | |
tree | bcf949a6ef161c08410b7449502089c260003032 /xpass.c | |
parent | 80fdfd87f89ddf1640b05c561cae74c6fac51472 (diff) |
Release 1.0.0RC1
Diffstat (limited to 'xpass.c')
-rw-r--r-- | xpass.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -41,9 +41,10 @@ PHP_RINIT_FUNCTION(xpass) PHP_MINFO_FUNCTION(xpass) { php_info_print_table_start(); - php_info_print_table_header(2, "xpass support", "enabled"); + php_info_print_table_header(2, "Extended password support", "enabled"); php_info_print_table_row(2, "Extension version", PHP_XPASS_VERSION); - php_info_print_table_row(2, "Author", PHP_XPASS_VERSION); + php_info_print_table_row(2, "libxcrypt version", XCRYPT_VERSION_STR); + php_info_print_table_row(2, "Author", PHP_XPASS_AUTHOR); php_info_print_table_row(2, "License", PHP_XPASS_LICENSE); #ifdef HAVE_CRYPT_SHA512 php_info_print_table_row(2, "sha512 hash", "yes"); |