summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-08-17 13:43:08 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-08-17 13:43:08 +0000
commit3a211712eb59b2ad8b623dd6f32bb3a28f10fca7 (patch)
tree0c1a63861f7e920258c36c5a2d4fdd641e70cb82 /main
parent3d87be2674027f24e803f205a034c2579a7a82bc (diff)
downloadphp-git-3a211712eb59b2ad8b623dd6f32bb3a28f10fca7.tar.gz
Increased default memory limit to 16 megabytes to accommodate for a more
accurate memory utilization measurement.
Diffstat (limited to 'main')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index 215a497dc5..cc44717432 100644
--- a/main/main.c
+++ b/main/main.c
@@ -312,7 +312,7 @@ PHP_INI_BEGIN()
PHP_INI_ENTRY("smtp_port", "25", PHP_INI_ALL, NULL)
PHP_INI_ENTRY("browscap", NULL, PHP_INI_SYSTEM, NULL)
#if MEMORY_LIMIT
- PHP_INI_ENTRY("memory_limit", "8M", PHP_INI_ALL, OnChangeMemoryLimit)
+ PHP_INI_ENTRY("memory_limit", "16M", PHP_INI_ALL, OnChangeMemoryLimit)
#endif
PHP_INI_ENTRY("precision", "14", PHP_INI_ALL, OnSetPrecision)
PHP_INI_ENTRY("sendmail_from", NULL, PHP_INI_ALL, NULL)