diff options
author | Derick Rethans <derick@php.net> | 2000-08-15 14:58:21 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2000-08-15 14:58:21 +0000 |
commit | 28273dfaa286d3fca0d0cacf5b44237227c9bec5 (patch) | |
tree | def53f0781c28b4d11dcfb4dee207c4bb170babf /ext/mcrypt/mcrypt.c | |
parent | 65bb194d65f4e96e8ac4f8e644aaa6c1c5ab9a57 (diff) | |
download | php-git-28273dfaa286d3fca0d0cacf5b44237227c9bec5.tar.gz |
- Clearified which version of libmcrypt is enabled
# Request by Olivier Cahagne
Diffstat (limited to 'ext/mcrypt/mcrypt.c')
-rw-r--r-- | ext/mcrypt/mcrypt.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 974ab9cea4..8147d8b4d7 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -373,8 +373,11 @@ PHP_MINFO_FUNCTION(mcrypt) php_info_print_table_start(); php_info_print_table_header(2, "mcrypt support", "enabled"); +#if HAVE_LIBMCRYPT22 + php_info_print_table_row(2, "version", "2.2.x"); +#endif #if HAVE_LIBMCRYPT24 - php_info_print_table_row(2, "API Version", ">= 20000320"); + php_info_print_table_row(2, "version", "2.4.x"); php_info_print_table_row(2, "Supported ciphers", tmp); php_info_print_table_row(2, "Supported modes", tmp2); efree (tmp2); |