From 74e9e4618200825ddf3dbaa2ed85a32949c89147 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 28 Aug 2024 16:31:59 +0200 Subject: Release 1.0.0RC1 --- xpass.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xpass.c') diff --git a/xpass.c b/xpass.c index ad21234..bab404a 100644 --- a/xpass.c +++ b/xpass.c @@ -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"); -- cgit