Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/sapi/fpm/fpm/fpm_php.c branches/PHP_5_3/sapi/fpm/fpm/fpm_php.h branches/PHP_5_3/sapi/fpm/fpm/fpm_request.c branches/PHP_5_3/sapi

2011-01-30 Thread Antony Dovgal
On 01/29/2011 02:38 PM, Jérôme Loyet wrote: + if (request_uri) { + cpystrn(slot-request_uri, request_uri, sizeof(slot-request_uri)); + } + No need to use/have private string funcs for that, we have strlcpy() strlcat() in PHP. See main/strlcpy.c and main/strlcat.c. --

Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/sapi/fpm/fpm/fpm_php.c branches/PHP_5_3/sapi/fpm/fpm/fpm_php.h branches/PHP_5_3/sapi/fpm/fpm/fpm_request.c branches/PHP_5_3/sapi

2011-01-30 Thread Jérôme Loyet
2011/1/30 Antony Dovgal t...@daylessday.org: On 01/29/2011 02:38 PM, Jérôme Loyet wrote: +     if (request_uri) { +             cpystrn(slot-request_uri, request_uri, sizeof(slot-request_uri)); +     } + No need to use/have private string funcs for that, we have strlcpy() strlcat() in

Re: [PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/sapi/fpm/fpm/fpm_php.c branches/PHP_5_3/sapi/fpm/fpm/fpm_php.h branches/PHP_5_3/sapi/fpm/fpm/fpm_request.c branches/PHP_5_3/sapi

2011-01-30 Thread Antony Dovgal
On 01/30/2011 04:52 PM, Jérôme Loyet wrote: 2011/1/30 Antony Dovgal t...@daylessday.org: On 01/29/2011 02:38 PM, Jérôme Loyet wrote: + if (request_uri) { + cpystrn(slot-request_uri, request_uri, sizeof(slot-request_uri)); + } + No need to use/have private string funcs

[PHP-CVS] svn: /php/php-src/ branches/PHP_5_3/NEWS branches/PHP_5_3/sapi/fpm/fpm/fpm_php.c branches/PHP_5_3/sapi/fpm/fpm/fpm_php.h branches/PHP_5_3/sapi/fpm/fpm/fpm_request.c branches/PHP_5_3/sapi/fpm

2011-01-29 Thread Jérôme Loyet
fat Sat, 29 Jan 2011 11:38:19 + Revision: http://svn.php.net/viewvc?view=revisionrevision=307842 Log: - Fixed bug #53434 (php-fpm slowlog now also logs the original request). Bug: http://bugs.php.net/53434 (Analyzed) More details for slow requests