Changeset 118

Show
Ignore:
Timestamp:
07/09/05 11:18:17 (3 years ago)
Author:
zoeloelip
Message:

A compile fix for php4 (bug #1235017)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/ChangeLog

    r117 r118  
     12005-07-08 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2 
     3        * A compile fix for php4 (bug #1235017) 
     4 
    152005-07-07 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    26 
  • eaccelerator/trunk/ea_store.c

    r116 r118  
    553553                     getpid (), 
    554554                     from->function_name ? from->function_name : "(top)", 
    555                      from->scope ? from->scope->name : "NULL"); 
     555#ifdef ZEND_ENGINE_2 
     556                     from->scope ? from->scope->name : "NULL" 
     557#else 
     558                    "NULL" 
     559#endif 
     560                        ); 
    556561 
    557562    if (from->type == ZEND_INTERNAL_FUNCTION) {