Changeset 306

Show
Ignore:
Timestamp:
05/10/07 00:29:37 (1 year ago)
Author:
bart
Message:

Use php_strtok_r instead of strtok_r (Thanks to Daan <daan at parse.nl>)

Files:

Legend:

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

    r303 r306  
     12007-05-09  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2 
     3        * Use php_strtok_r instead of strtok_r (Thanks to Daan <daan at parse.nl>) 
     4 
    152007-04-21  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    26 
  • eaccelerator/trunk/eaccelerator.c

    r303 r306  
    14731473        list_head = NULL; 
    14741474        p = NULL; 
    1475         while ((token = strtok_r(filter, " ", &saveptr)) != NULL) { 
     1475        while ((token = phpstrtok_r(filter, " ", &saveptr)) != NULL) { 
    14761476                filter = NULL; 
    14771477                list_head = malloc(sizeof(struct ea_pattern_t));