diff options
author | Stanislav Malyshev <stas@php.net> | 2007-02-23 21:45:00 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2007-02-23 21:45:00 +0000 |
commit | 4019bf53709a9d546d0469dfb3ed98d3d4a456b9 (patch) | |
tree | 002e477f960378c1095bcfd8e13893bcad3429d2 /sapi/apache_hooks | |
parent | e8942068748573f46e4f6c34aadb21f1eca213e1 (diff) | |
download | php-git-4019bf53709a9d546d0469dfb3ed98d3d4a456b9.tar.gz |
use snprintf
Diffstat (limited to 'sapi/apache_hooks')
-rw-r--r-- | sapi/apache_hooks/php_apache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache_hooks/php_apache.c b/sapi/apache_hooks/php_apache.c index 2fb66f1023..ce916d6a01 100644 --- a/sapi/apache_hooks/php_apache.c +++ b/sapi/apache_hooks/php_apache.c @@ -1614,10 +1614,10 @@ PHP_MINFO_FUNCTION(apache) #endif sprintf(output_buf, "%d", MODULE_MAGIC_NUMBER); php_info_print_table_row(2, "Apache API Version", output_buf); - sprintf(output_buf, "%s:%u", serv->server_hostname, serv->port); + snprintf(output_buf, sizeof(output_buf), "%s:%u", serv->server_hostname, serv->port); php_info_print_table_row(2, "Hostname:Port", output_buf); #if !defined(WIN32) && !defined(WINNT) - sprintf(output_buf, "%s(%d)/%d", user_name, (int)user_id, (int)group_id); + snprintf(output_buf, sizeof(output_buf), "%s(%d)/%d", user_name, (int)user_id, (int)group_id); php_info_print_table_row(2, "User/Group", output_buf); sprintf(output_buf, "Per Child: %d - Keep Alive: %s - Max Per Connection: %d", max_requests_per_child, serv->keep_alive ? "on":"off", serv->keep_alive_max); php_info_print_table_row(2, "Max Requests", output_buf); |