wrowe 00/12/08 10:05:34
Modified: test testdbm.c
Log:
new name, new location, same as httpd-2.0/test/dbu.c which goes away.
Fixed prototype for apr_dbm_open()
Revision Changes Path
1.3 +1 -1 apr-util/test/testdbm.c
Index: testdbm.c
===================================================================
RCS file: /home/cvs/apr-util/test/testdbm.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- testdbm.c 2000/12/06 08:13:14 1.2
+++ testdbm.c 2000/12/08 18:05:33 1.3
@@ -178,7 +178,7 @@
extern long time();
#endif
- if (apr_dbm_open(file, pool, act->flags, &db) != APR_SUCCESS)
+ if (apr_dbm_open(&db, file, act->flags, pool) != APR_SUCCESS)
oops("cannot open: %s", file);
if ((line = (char *) malloc(LINEMAX)) == NULL)