[PHP-CVS] cvs: php-src /main php_ini.c

2008-12-30 Thread Marcus Boerger
helly Tue Dec 30 19:08:43 2008 UTC Modified files: /php-src/main php_ini.c Log: - Do not show empty ini directive tables for modules without ini entries. http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.169&r2=1.170&diff_format=u Index: php-src/

[PHP-CVS] cvs: php-src /main php_ini.c

2008-08-13 Thread Pierre-Alain Joye
pajoye Wed Aug 13 21:51:54 2008 UTC Modified files: /php-src/main php_ini.c Log: - MFB: move declaration on top and fix build error http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.168&r2=1.169&diff_format=u Index: php-src/main/php_ini.c diff -u

[PHP-CVS] cvs: php-src /main php_ini.c php_ini.h /sapi/cgi cgi_main.c

2008-04-15 Thread Dmitry Stogov
dmitry Tue Apr 15 11:32:13 2008 UTC Modified files: /php-src/main php_ini.c php_ini.h /php-src/sapi/cgi cgi_main.c Log: Optimized request startup sequence for php.ini without per dir and per host conf igurations http://cvs.php.net/viewvc.cgi/

[PHP-CVS] cvs: php-src /main php_ini.c

2007-11-26 Thread Jani Taskinen
janiMon Nov 26 16:34:07 2007 UTC Modified files: /php-src/main php_ini.c Log: - No zval is stored here http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.162&r2=1.163&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.1

[PHP-CVS] cvs: php-src /main php_ini.c php_ini.h /sapi/cgi cgi_main.c

2007-11-09 Thread Jani Taskinen
janiFri Nov 9 16:02:50 2007 UTC Modified files: /php-src/main php_ini.c php_ini.h /php-src/sapi/cgi cgi_main.c Log: - Added support for [HOST=www.example.com] sections # Works the same way as PATH, just the SERVER_NAME is matched with these

[PHP-CVS] cvs: php-src /main php_ini.c

2007-10-01 Thread Jani Taskinen
janiMon Oct 1 12:26:56 2007 UTC Modified files: /php-src/main php_ini.c Log: - Fix warning http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.158&r2=1.159&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.158 php-src/

[PHP-CVS] cvs: php-src /main php_ini.c php_ini.h

2007-09-28 Thread Jani Taskinen
janiFri Sep 28 10:23:14 2007 UTC Modified files: /php-src/main php_ini.c php_ini.h Log: - Fix win32 build. http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.157&r2=1.158&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_in

[PHP-CVS] cvs: php-src /main php_ini.c

2007-08-31 Thread Jani Taskinen
janiFri Aug 31 08:13:07 2007 UTC Modified files: /php-src/main php_ini.c Log: ws fixes http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.155&r2=1.156&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.155 php-src/main/

[PHP-CVS] cvs: php-src /main php_ini.c

2007-08-31 Thread Jani Taskinen
janiFri Aug 31 08:09:41 2007 UTC Modified files: /php-src/main php_ini.c Log: ws + apify cfg_get_entry http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.154&r2=1.155&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.1

[PHP-CVS] cvs: php-src /main php_ini.c

2007-05-19 Thread Antony Dovgal
tony2001Sat May 19 12:52:31 2007 UTC Modified files: /php-src/main php_ini.c Log: use correct constant http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.153&r2=1.154&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_in

[PHP-CVS] cvs: php-src /main php_ini.c

2007-05-14 Thread Antony Dovgal
tony2001Mon May 14 12:19:25 2007 UTC Modified files: /php-src/main php_ini.c Log: use estrdup() and plug the leak http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.152&r2=1.153&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2007-05-14 Thread Antony Dovgal
No free()? On 05/12/2007 08:06 PM, Hannes Magnusson wrote: -/* $Id: php_ini.c,v 1.151 2007/05/10 19:51:19 bjori Exp $ */ +/* $Id: php_ini.c,v 1.152 2007/05/12 16:06:07 bjori Exp $ */ #include "php.h" #include "ext/standard/info.h" @@ -352,12 +352,15 @@ if (sapi_module.execut

[PHP-CVS] cvs: php-src /main php_ini.c

2007-05-12 Thread Hannes Magnusson
bjori Sat May 12 16:06:07 2007 UTC Modified files: /php-src/main php_ini.c Log: Fixed bug#41361 (shell_exec() does not find binaries) http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.151&r2=1.152&diff_format=u Index: php-src/main/php_ini.c di

[PHP-CVS] cvs: php-src /main php_ini.c

2007-05-10 Thread Hannes Magnusson
bjori Thu May 10 19:51:19 2007 UTC Modified files: /php-src/main php_ini.c Log: MFB - use php_strtok_r() rather than strsep() http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.150&r2=1.151&diff_format=u Index: php-src/main/php_ini.c diff -u ph

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2007-05-08 Thread Antony Dovgal
Hannes, unfortunately strsep() is missing on Solaris, so this patch breaks the build. On 04/25/2007 02:02 PM, Hannes Magnusson wrote: diff -u php-src/main/php_ini.c:1.149 php-src/main/php_ini.c:1.150 --- php-src/main/php_ini.c:1.149Mon Apr 16 09:43:52 2007 +++ php-src/main/php_ini.c

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2007-04-25 Thread Hannes Magnusson
Hi Chris On 4/25/07, Christopher Jones <[EMAIL PROTECTED]> wrote: Instead of overloading PATH can we use a PHP-specific environment variable? I can't think of a reason why I'd put my php.ini in the same directory as any executables other than perhaps where the php CLI executable is. This patc

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2007-04-25 Thread Christopher Jones
Instead of overloading PATH can we use a PHP-specific environment variable? I can't think of a reason why I'd put my php.ini in the same directory as any executables other than perhaps where the php CLI executable is. Chris Hannes Magnusson wrote: bjori Wed Apr 25 10:02:23 2007 UTC

[PHP-CVS] cvs: php-src /main php_ini.c

2007-04-25 Thread Hannes Magnusson
bjori Wed Apr 25 10:02:23 2007 UTC Modified files: /php-src/main php_ini.c Log: - Don't pick up php.ini from cwd on BSDs - "Resolve" (with the help of $PATH) to /path/to/php and pick up the php.ini from there http://cvs.php.net/viewvc.cgi/ph

[PHP-CVS] cvs: php-src /main php_ini.c

2006-12-28 Thread Antony Dovgal
tony2001Thu Dec 28 12:18:47 2006 UTC Modified files: /php-src/main php_ini.c Log: use strlcat() http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.145&r2=1.146&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.1

[PHP-CVS] cvs: php-src /main php_ini.c

2006-09-05 Thread Edin Kadribasic
edink Tue Sep 5 11:55:08 2006 UTC Modified files: /php-src/main php_ini.c Log: MFB http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.144&r2=1.145&diff_format=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.144 php-src/main/php_i

[PHP-CVS] cvs: php-src /main php_ini.c

2006-08-03 Thread Dmitry Stogov
dmitry Thu Aug 3 11:05:09 2006 UTC Modified files: /php-src/main php_ini.c Log: In addtion to path to php.ini, PHPRC now may specify full file name http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.143&r2=1.144&diff_format=u Index: php-src/mai

[PHP-CVS] cvs: php-src /main php_ini.c

2006-07-03 Thread Dmitry Stogov
dmitry Tue Jul 4 06:38:32 2006 UTC Modified files: /php-src/main php_ini.c Log: Changed priority of PHPRC environment variable on win32 to be higher then value from registry. http://cvs.php.net/viewvc.cgi/php-src/main/php_ini.c?r1=1.142&r2=1.143&diff

[PHP-CVS] cvs: php-src /main php_ini.c

2005-09-02 Thread Jani Taskinen
sniper Fri Sep 2 04:26:05 2005 EDT Modified files: /php-src/main php_ini.c Log: MFB: Always return something, even if it succeeds :) http://cvs.php.net/diff.php/php-src/main/php_ini.c?r1=1.137&r2=1.138&ty=u Index: php-src/main/php_ini.c diff -u php-src/m

[PHP-CVS] cvs: php-src /main php_ini.c

2005-07-29 Thread Jani Taskinen
sniper Fri Jul 29 10:29:29 2005 EDT Modified files: /php-src/main php_ini.c Log: - Fixed few logic errors in php*.ini search path creation as documented here: http://fi.php.net/manual/en/configuration.php#configuration.file # # Before this pa

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2005-07-28 Thread Andi Gutmans
Ok thanks. At 03:18 AM 7/29/2005 +0300, Jani Taskinen wrote: It's a fix. php.ini was looked in php/ when it should have been looked under // --Jani On Thu, 28 Jul 2005, Andi Gutmans wrote: Is this a bug fix? Or added functionality? At 03:12 PM 7/27/2005 +, Hartmut Holzgraef

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2005-07-28 Thread Jani Taskinen
It's a fix. php.ini was looked in php/ when it should have been looked under // --Jani On Thu, 28 Jul 2005, Andi Gutmans wrote: Is this a bug fix? Or added functionality? At 03:12 PM 7/27/2005 +, Hartmut Holzgraefe wrote: hholzgraWed Jul 27 11:12:19 2005 EDT

Re: [PHP-CVS] cvs: php-src /main php_ini.c

2005-07-28 Thread Andi Gutmans
Is this a bug fix? Or added functionality? At 03:12 PM 7/27/2005 +, Hartmut Holzgraefe wrote: hholzgraWed Jul 27 11:12:19 2005 EDT Modified files: /php-src/main php_ini.c Log: php.ini search logic needs to use the absolute path of the running binary when lo

[PHP-CVS] cvs: php-src /main php_ini.c

2005-07-27 Thread Antony Dovgal
tony2001Wed Jul 27 11:16:16 2005 EDT Modified files: /php-src/main php_ini.c Log: ws fix http://cvs.php.net/diff.php/php-src/main/php_ini.c?r1=1.132&r2=1.133&ty=u Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.132 php-src/main/ph

[PHP-CVS] cvs: php-src /main php_ini.c

2005-07-27 Thread Hartmut Holzgraefe
hholzgraWed Jul 27 11:13:50 2005 EDT Modified files: /php-src/main php_ini.c Log: edge case: do not remove trailing slash for root directory (Bug #33882) http://cvs.php.net/diff.php/php-src/main/php_ini.c?r1=1.131&r2=1.132&ty=u Index: php-src/ma

[PHP-CVS] cvs: php-src /main php_ini.c

2005-07-27 Thread Hartmut Holzgraefe
hholzgraWed Jul 27 11:12:19 2005 EDT Modified files: /php-src/main php_ini.c Log: php.ini search logic needs to use the absolute path of the running binary when looking for php.ini in the directory the php binary is installed in http://cvs.php

[PHP-CVS] cvs: php-src /main php_ini.c

2004-09-16 Thread Ilia Alshanetsky
iliaa Thu Sep 16 22:48:42 2004 EDT Modified files: /php-src/main php_ini.c Log: Fixed bug #30050 (Possible crash inside php_shutdown_config()). # Patch suggestion by nw at softwarekombinat dot de http://cvs.php.net/diff.php/php-src/main/php_ini.

[PHP-CVS] cvs: php-src /main php_ini.c

2004-02-14 Thread Derick Rethans
derick Sat Feb 14 07:35:59 2004 EDT Modified files: /php-src/main php_ini.c Log: - We always need to destroy the llist though. http://cvs.php.net/diff.php/php-src/main/php_ini.c?r1=1.126&r2=1.127&ty=u Index: php-src/main/php_ini.c diff -u php-src/main/

[PHP-CVS] cvs: php-src /main php_ini.c

2003-10-19 Thread Ilia Alshanetsky
iliaa Sun Oct 19 22:21:26 2003 EDT Modified files: /php-src/main php_ini.c Log: Fixed unused variable warning on *nix. Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.122 php-src/main/php_ini.c:1.123 --- php-src/main/php_ini.c:1.122

[PHP-CVS] cvs: php-src /main php_ini.c

2003-10-19 Thread Stanislav Malyshev
stasSun Oct 19 06:39:28 2003 EDT Modified files: /php-src/main php_ini.c Log: Enable setting php.ini path via the registry Index: php-src/main/php_ini.c diff -u php-src/main/php_ini.c:1.121 php-src/main/php_ini.c:1.122 --- php-src/main/php_ini.c:1.1