summaryrefslogtreecommitdiff
path: root/ext/dba/dba_cdb.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2000-04-30 19:01:17 +0000
committerAndi Gutmans <andi@php.net>2000-04-30 19:01:17 +0000
commit5d5b09e1a73bb8446095df86ed61370c48385a55 (patch)
tree03a61a74b9e84476a185c914ecf5985c8e8acf78 /ext/dba/dba_cdb.c
parent1f64d98753c407afdd788ba123ff077e81a342d3 (diff)
downloadphp-git-5d5b09e1a73bb8446095df86ed61370c48385a55.tar.gz
- Change some open's to V_OPEN()'s
Diffstat (limited to 'ext/dba/dba_cdb.c')
-rw-r--r--ext/dba/dba_cdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dba/dba_cdb.c b/ext/dba/dba_cdb.c
index fa38de931b..31483e03be 100644
--- a/ext/dba/dba_cdb.c
+++ b/ext/dba/dba_cdb.c
@@ -71,7 +71,7 @@ DBA_OPEN_FUNC(cdb)
cdb = malloc(sizeof *cdb);
memset(cdb, 0, sizeof *cdb);
- cdb->fd = open(info->path, gmode);
+ cdb->fd = V_OPEN((info->path, gmode))
if(cdb->fd < 0) {
free(cdb);
return FAILURE;