summaryrefslogtreecommitdiff
path: root/main/main.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-04-16 08:12:51 +0000
committerAndi Gutmans <andi@php.net>1999-04-16 08:12:51 +0000
commit8cf2d74b76add639c3b4cfed3656e664010c164b (patch)
treee809658919db0e347d90387eb9bc89bd98b668cf /main/main.c
parentb32b2831d8d919bdf9331b894f8027ed8bebe60e (diff)
downloadphp-git-8cf2d74b76add639c3b4cfed3656e664010c164b.tar.gz
- Make the memory leak message print PHP4.
Diffstat (limited to 'main/main.c')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index c69dc14f7d..576444478d 100644
--- a/main/main.c
+++ b/main/main.c
@@ -612,7 +612,7 @@ static void php_message_handler_for_zend(long message, void *data)
# if APACHE /* log into the errorlog, since at this time we can't send messages to the browser */
char memory_leak_buf[512];
- snprintf(memory_leak_buf,512,"Possible PHP3 memory leak detected (harmless): %d bytes from %s:%d",t->size,t->filename,t->lineno);
+ snprintf(memory_leak_buf,512,"Possible PHP4 memory leak detected (harmless): %d bytes from %s:%d",t->size,t->filename,t->lineno);
# if MODULE_MAGIC_NUMBER >= 19970831
aplog_error(NULL, 0, APLOG_ERR | APLOG_NOERRNO, GLOBAL(php3_rqst)->server, memory_leak_buf);
# else