Skip to content

Commit

Permalink
Merge pull request #43 from remicollet/issue-infosasl
Browse files Browse the repository at this point in the history
report about SASL support
  • Loading branch information
iliaal committed Jan 26, 2013
2 parents ca92345 + f719529 commit 08593c0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions php_memcached.c
Original file line number Diff line number Diff line change
Expand Up @@ -3895,6 +3895,12 @@ PHP_MINFO_FUNCTION(memcached)
php_info_print_table_row(2, "Version", PHP_MEMCACHED_VERSION);
php_info_print_table_row(2, "libmemcached version", memcached_lib_version());

#if HAVE_MEMCACHED_SASL
php_info_print_table_row(2, "SASL support", "yes");
#else
php_info_print_table_row(2, "SASL support", "no");
#endif

#ifdef HAVE_MEMCACHED_SESSION
php_info_print_table_row(2, "Session support", "yes");
#else
Expand Down

0 comments on commit 08593c0

Please sign in to comment.