Date: 05/29/98
- Next message: Bug Database: "[PHP-DEV] Bug #414 Updated: zlib warning"
- Previous message: Zeev Suraski: "Re: [PHP-DEV] Bug #416: mysql_insert_id() always returns 0"
- Next in thread: zeev: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Friday May 29, 1998 @ 17:28
Author: sr
Update of /repository/php3
In directory asf:/tmp/cvs-serv14718
Modified Files:
main.c php.h
Log Message:
Fixed compile warning about discarding const from pointer target type.
Index: php3/main.c
diff -c php3/main.c:1.442 php3/main.c:1.443
*** php3/main.c:1.442 Fri May 29 12:25:37 1998
--- php3/main.c Fri May 29 17:28:36 1998
***************
*** 29,35 ****
+----------------------------------------------------------------------+
*/
! /* $Id: main.c,v 1.442 1998/05/29 16:25:37 zeev Exp $ */
/* #define CRASH_DETECTION */
--- 29,35 ----
+----------------------------------------------------------------------+
*/
! /* $Id: main.c,v 1.443 1998/05/29 21:28:36 sr Exp $ */
/* #define CRASH_DETECTION */
***************
*** 161,167 ****
#if APACHE
! void php3_apache_puts(char *s)
{
TLS_VARS;
--- 161,167 ----
#if APACHE
! void php3_apache_puts(const char *s)
{
TLS_VARS;
Index: php3/php.h
diff -c php3/php.h:1.17 php3/php.h:1.18
*** php3/php.h:1.17 Sat May 23 18:22:14 1998
--- php3/php.h Fri May 29 17:28:36 1998
***************
*** 28,34 ****
+----------------------------------------------------------------------+
*/
! /* $Id: php.h,v 1.17 1998/05/23 22:22:14 zeev Exp $ */
#ifndef _PHP_H
#define _PHP_H
--- 28,34 ----
+----------------------------------------------------------------------+
*/
! /* $Id: php.h,v 1.18 1998/05/29 21:28:36 sr Exp $ */
#ifndef _PHP_H
#define _PHP_H
***************
*** 237,243 ****
#define EXEC_INPUT_BUF 4096
#if APACHE
! extern PHPAPI void php3_apache_puts(char *s);
extern PHPAPI void php3_apache_putc(char c);
# if !defined(COMPILE_DL)
# define PUTS(s) php3_apache_puts(s)
--- 237,243 ----
#define EXEC_INPUT_BUF 4096
#if APACHE
! extern PHPAPI void php3_apache_puts(const char *s);
extern PHPAPI void php3_apache_putc(char c);
# if !defined(COMPILE_DL)
# define PUTS(s) php3_apache_puts(s)
- Next message: Bug Database: "[PHP-DEV] Bug #414 Updated: zlib warning"
- Previous message: Zeev Suraski: "Re: [PHP-DEV] Bug #416: mysql_insert_id() always returns 0"
- Next in thread: zeev: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

