From: Michael Wallner Date: Tue, 26 Jan 2016 10:58:32 +0000 (+0100) Subject: we now have fcntl X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=commitdiff_plain;h=7f77a893007a064d69773bae8caa14bd8ce83637 we now have fcntl --- diff --git a/tests/ndbm/ndbm001.phpt b/tests/ndbm/ndbm001.phpt index e14f3f1..27012be 100644 --- a/tests/ndbm/ndbm001.phpt +++ b/tests/ndbm/ndbm001.phpt @@ -13,7 +13,7 @@ function_exists("psi\\dbm_open") or die("skip - need nbdm support"); class db { private $db; - function __construct($file = "ndbm001.db", $o = 0102, $m = 0640) { + function __construct($file = "ndbm001.db", $o = psi\O_CREAT|psi\O_RDWR, $m = 0640) { if (!$this->db = psi\dbm_open($file, $o, $m)) { throw new Exception(psi\strerror(psi\errno())); }