diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2007-01-05 15:06:55 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2007-01-05 15:06:55 +0000 |
| commit | 7d901eacbe756eb6108c253245a65b7bcaa62b0e (patch) | |
| tree | 7a6adb2fb0b25cd34aa4e58c34e6a66728cbecf6 /ext/ldap/ldap.c | |
| parent | 56a147fbff3360aa792630e831b6892875a2334b (diff) | |
| download | php-git-7d901eacbe756eb6108c253245a65b7bcaa62b0e.tar.gz | |
%f -> %F
Diffstat (limited to 'ext/ldap/ldap.c')
| -rw-r--r-- | ext/ldap/ldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index 298845c0a7..781a5d7205 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -342,13 +342,13 @@ PHP_MINFO_FUNCTION(ldap) #if HAVE_NSLDAP SDKVersion = ldap_version(&ver); - snprintf(tmp, 31, "%f", SDKVersion/100.0); + snprintf(tmp, 31, "%F", SDKVersion/100.0); php_info_print_table_row(2, "SDK Version", tmp); - snprintf(tmp, 31, "%f", ver.protocol_version/100.0); + snprintf(tmp, 31, "%F", ver.protocol_version/100.0); php_info_print_table_row(2, "Highest LDAP Protocol Supported", tmp); - snprintf(tmp, 31, "%f", ver.SSL_version/100.0); + snprintf(tmp, 31, "%F", ver.SSL_version/100.0); php_info_print_table_row(2, "SSL Level Supported", tmp); if (ver.security_level != LDAP_SECURITY_NONE) { |
