You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2001/06/24 19:14:50 UTC

cvs commit: apr-util/test testdbm.c

jerenkrantz    01/06/24 10:14:50

  Modified:    test     testdbm.c
  Log:
  Add the "new" perm argument to apr_dbm_open.
  
  Revision  Changes    Path
  1.7       +2 -1      apr-util/test/testdbm.c
  
  Index: testdbm.c
  ===================================================================
  RCS file: /home/cvs/apr-util/test/testdbm.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- testdbm.c	2001/02/16 04:17:12	1.6
  +++ testdbm.c	2001/06/24 17:14:50	1.7
  @@ -179,7 +179,8 @@
       extern long time();
   #endif
   
  -    if (apr_dbm_open(&db, file, act->flags, pool) != APR_SUCCESS)
  +    if (apr_dbm_open(&db, file, act->flags, APR_OS_DEFAULT, pool) 
  +        != APR_SUCCESS)
           oops("cannot open: %s", file);
   
       if ((line = (char *) malloc(LINEMAX)) == NULL)