]> granicus.if.org Git - php/commitdiff
fix bug 4533
authorSterling Hughes <sterling@php.net>
Sun, 21 May 2000 23:15:09 +0000 (23:15 +0000)
committerSterling Hughes <sterling@php.net>
Sun, 21 May 2000 23:15:09 +0000 (23:15 +0000)
ext/dba/dba_cdb.c

index 31483e03be2439af0828a1e9f92c0626ecbee583..8f90805fad3e76a403d2596a5588f6d3f322b019 100644 (file)
@@ -71,7 +71,7 @@ DBA_OPEN_FUNC(cdb)
        cdb = malloc(sizeof *cdb);
        memset(cdb, 0, sizeof *cdb);
 
-       cdb->fd = V_OPEN((info->path, gmode))
+       cdb->fd = V_OPEN((info->path, gmode));
        if(cdb->fd < 0) {
                free(cdb);
                return FAILURE;