]> granicus.if.org Git - php/commitdiff
fix flushing cached information to disk
authorSascha Schumann <sas@php.net>
Tue, 17 Aug 1999 14:18:27 +0000 (14:18 +0000)
committerSascha Schumann <sas@php.net>
Tue, 17 Aug 1999 14:18:27 +0000 (14:18 +0000)
ChangeLog
ext/dba/dba_db2.c

index c6afdcfb02265dd08f029d0d78cf95af73cf6be2..900e4c786de730f1d5b60e905b09415d14e79b12 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ PHP 4.0 CHANGE LOG                                                    ChangeLog
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 ?? ?? 1999, Version 4.0 Beta 3
+- Fixed flushing of cached information to disk in DBA's DB2 module (Sascha)
 - OCI8 is now ZTS-Save (Thies)
 - Imported PHP 3.0 diskfreespace() function (Thies)
 - Fixed thread-safety issues in the MySQL module (Zeev)
index c522ef7c2db5beaca70ebd627477385f2970c398..7812fdfa71f6d6abc733a7923cdcda97a8503788 100644 (file)
@@ -96,7 +96,7 @@ DBA_CLOSE_FUNC(db2)
        DB2_DATA;
        
        if(dba->cursor) dba->cursor->c_close(dba->cursor);
-       dba->dbp->close(dba->dbp, DB_NOSYNC);
+       dba->dbp->close(dba->dbp, 0);
        free(dba);
 }