From 981e1ae7b8f890ba042ba6b50c6a0b8de72f46f3 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 13 Jun 2000 14:37:34 +0000 Subject: [PATCH] O_APPEND breaks 'c' for DBM files - this is handled correctly by PHP3, so it's almost a forward'' port :) --- NEWS | 2 ++ ext/db/db.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index e0d09490dcf..fdbe088485d 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ PHP 4.0 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2000, Version 4.0.1 +- Fixed a problem with dbmopen() not handing 'c' correctly with dbm/db/ndbm + databases. (JimJag) - Fixed an initialization problem in the MS-SQL problem that could cause a crash in mssql_query() (Zeev) - Upgraded PCRE to version 3.2 and fixed a bug when anchored pattern diff --git a/ext/db/db.c b/ext/db/db.c index c1c3fef1121..50850124658 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -90,7 +90,7 @@ #define DBM_TYPE DBM * #define DBM_MODE_TYPE int #define DBM_WRITE_MODE O_RDWR -#define DBM_CREATE_MODE O_RDWR | O_APPEND | O_CREAT +#define DBM_CREATE_MODE O_RDWR | O_CREAT #define DBM_NEW_MODE O_RDWR | O_CREAT | O_TRUNC #define DBM_DEFAULT_MODE O_RDONLY #define DBM_OPEN(filename, mode) dbm_open(filename, mode, 0666)