summaryrefslogtreecommitdiff
path: root/ext/dba/dba.c
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2008-06-19 22:39:56 +0000
committerChristopher Jones <sixd@php.net>2008-06-19 22:39:56 +0000
commit2bb7df3504fd7fbbd1fa04dee0a8095fe557cc77 (patch)
tree4fa5b936e867b9c8f9692384a8f6400494ae453e /ext/dba/dba.c
parent6d63a0d9d121dc86d4e33d063efb974ce515fb09 (diff)
downloadphp-git-2bb7df3504fd7fbbd1fa04dee0a8095fe557cc77.tar.gz
MFH:
Fix bug #45266 (Fix build with BDB 4) Fix bug #45267 (Revert invalid assumption about BDB 4 locking; let DBA handle locking) Fix bug #45268 (Fix error callback prototype)
Diffstat (limited to 'ext/dba/dba.c')
-rw-r--r--ext/dba/dba.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/dba.c b/ext/dba/dba.c
index 61b3bc0c41..22ea355939 100644
--- a/ext/dba/dba.c
+++ b/ext/dba/dba.c
@@ -360,7 +360,7 @@ static dba_handler handler[] = {
DBA_HND(db3, DBA_LOCK_ALL) /* No lock in lib */
#endif
#if DBA_DB4
- DBA_HND(db4, DBA_LOCK_EXT) /* Locking done in library itself */
+ DBA_HND(db4, DBA_LOCK_ALL) /* No lock in lib */
#endif
#if DBA_INIFILE
DBA_HND(inifile, DBA_STREAM_OPEN|DBA_LOCK_ALL|DBA_CAST_AS_FD) /* No lock in lib */