[PHP-DEV] CVS update: php3 From: zeev (php-dev <email protected>)
Date: 10/22/98

Date: Thursday October 22, 1998 @ 17:49
Author: zeev

Update of /repository/php3
In directory asf:/u2/tmp/cvs-serv3136

Modified Files:
        token_cache.c
Log Message:
That slipped in... no need for it anymore

Index: php3/token_cache.c
diff -c php3/token_cache.c:1.91 php3/token_cache.c:1.92
*** php3/token_cache.c:1.91 Thu Oct 22 13:11:59 1998
--- php3/token_cache.c Thu Oct 22 17:49:33 1998
***************
*** 29,35 ****
   */
  
  
! /* $Id: token_cache.c,v 1.91 1998/10/22 17:11:59 thies Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
--- 29,35 ----
   */
  
  
! /* $Id: token_cache.c,v 1.92 1998/10/22 21:49:33 zeev Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
***************
*** 91,99 ****
                  return FAILURE;
          }
          tcm->initialized++;
- #if DEBUG
- fprintf(stderr,"%d\n", tcm->initialized);
- #endif
          if (tcm->initialized >= tcm->max) {
                  tcm->token_caches = (TokenCache *) erealloc(tcm->token_caches, (tcm->max + TOKEN_CACHES_BLOCK_SIZE) * sizeof(TokenCache));
                  if (!tcm->token_caches) {
--- 91,96 ----

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>