diff options
author | George Wang <gwang@php.net> | 2008-09-21 02:37:57 +0000 |
---|---|---|
committer | George Wang <gwang@php.net> | 2008-09-21 02:37:57 +0000 |
commit | 86978e726ce7bdd86a330f3658ecf2d6603c7980 (patch) | |
tree | 0eae36ae58fdec2d2c5a19a54454d34242e3de45 /sapi | |
parent | babc62e9ea9a6b8f2f2dcd4518961db329583bf9 (diff) | |
download | php-git-86978e726ce7bdd86a330f3658ecf2d6603c7980.tar.gz |
*** empty log message ***
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/litespeed/lsapilib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/litespeed/lsapilib.c b/sapi/litespeed/lsapilib.c index 9092533a5c..9084a850b2 100644 --- a/sapi/litespeed/lsapilib.c +++ b/sapi/litespeed/lsapilib.c @@ -2125,8 +2125,7 @@ void LSAPI_Init_Env_Parameters( fn_select_t fp ) #if defined( RLIMIT_CORE ) p = getenv( "LSAPI_ALLOW_CORE_DUMP" ); - if ( !p ) - { + if ( !p ) { struct rlimit limit = { 0, 0 }; setrlimit( RLIMIT_CORE, &limit ); } |