[PHP-DEV] CVS update: php3 From: sas (php-dev <email protected>)
Date: 03/02/99

Date: Tuesday March 2, 1999 @ 7:21
Author: sas

Update of /repository/php3
In directory asf:/u/temp/cvs-serv13239

Modified Files:
        mod_php3.c
Log Message:
this is not the right place for prototypes for extern functions IMHO
Index: php3/mod_php3.c
diff -c php3/mod_php3.c:1.90 php3/mod_php3.c:1.91
*** php3/mod_php3.c:1.90 Mon Feb 15 12:25:44 1999
--- php3/mod_php3.c Tue Mar 2 07:21:02 1999
***************
*** 27,33 ****
     | (with helpful hints from Dean Gaudet <dgaudet <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: mod_php3.c,v 1.90 1999/02/15 17:25:44 steffann Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
--- 27,33 ----
     | (with helpful hints from Dean Gaudet <dgaudet <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: mod_php3.c,v 1.91 1999/03/02 12:21:02 sas Exp $ */
  
  #ifdef THREAD_SAFE
  #include "tls.h"
***************
*** 98,104 ****
  extern php3_ini_structure php3_ini; /* active config */
  extern php3_ini_structure php3_ini_master; /* master copy of config */
  
! extern int apache_php3_module_main(request_rec *, int, int, int, FILE *);
  extern int php3_module_startup();
  extern void php3_module_shutdown();
  extern void php3_module_shutdown_for_exec();
--- 98,104 ----
  extern php3_ini_structure php3_ini; /* active config */
  extern php3_ini_structure php3_ini_master; /* master copy of config */
  
! extern int apache_php3_module_main(request_rec *, int, int, int);
  extern int php3_module_startup();
  extern void php3_module_shutdown();
  extern void php3_module_shutdown_for_exec();
***************
*** 242,248 ****
          chdir_file(filename);
          add_common_vars(r);
          add_cgi_vars(r);
! apache_php3_module_main(r, fd, display_source_mode, preprocessed, NULL);
  
          /* Done, restore umask, turn off timeout, close file and return */
          php3_restore_umask();
--- 242,248 ----
          chdir_file(filename);
          add_common_vars(r);
          add_cgi_vars(r);
! apache_php3_module_main(r, fd, display_source_mode, preprocessed);
  
          /* Done, restore umask, turn off timeout, close file and return */
          php3_restore_umask();

--
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>