Ignore:
Timestamp:
2010-05-07T21:11:22+12:00 (14 years ago)
Author:
ak19
Message:
  1. More changes to makefiles: rm JDBMWrapper.jar and jdbm.jar on clean. 2. DB files (argdb, users, key, history) now not only for gdbm but to work with other db types like jdbm, sqlite and mssql.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/recpt/collectoraction.cpp

    r21877 r22067  
    306306    }
    307307
    308     text_t argfile = filename_cat(gsdlhome, "tmp", args["bc1tmp"], "argdb.gdb");
    309     argdb *args_on_disk = new argdb(argfile);
     308    argdb *args_on_disk = new argdb(gsdlhome,args["bc1tmp"]);
    310309    if (!args_on_disk->update_args(saved_args)) {
    311310      // error
    312       logout << "collectoraction: argdb::update_args failed (" << argfile << ")\n";
     311      logout << "collectoraction: argdb::update_args failed\n";
    313312    }
    314313
     
    317316    if (!args_on_disk->get_args(saved_args)) {
    318317      // error
    319       logout << "collectoraction: argdb::get_args failed (" << argfile << ")\n";
     318      logout << "collectoraction: argdb::get_args failed\n";
    320319    }
    321320    delete args_on_disk;
Note: See TracChangeset for help on using the changeset viewer.