- added a new function to the database interface, cdb_close_cursor(). always
[citadel.git] / citadel / serv_vandelay.c
index bc54ced0fd159076fe49afd938bad97a324d8ddd..bd613e0c0cd544d2f40fa534c248207bfb7907ad 100644 (file)
@@ -155,7 +155,6 @@ void artv_export_visits(void) {
        struct visit vbuf;
        struct cdbdata *cdbv;
 
-       cdb_begin_transaction();
        cdb_rewind(CDB_VISIT);
 
        while (cdbv = cdb_next_item(CDB_VISIT), cdbv != NULL) {
@@ -179,7 +178,6 @@ void artv_export_visits(void) {
 
                cprintf("%u\n", vbuf.v_flags);
        }
-       cdb_end_transaction();
 }