Ignore:
Timestamp:
2009-04-20T10:12:42+12:00 (15 years ago)
Author:
kjdon
Message:

all gdbm files (key, users, history, argdb) now use gdb extension instead of db

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/runtime-src/src/recpt/historydb.cpp

    r15654 r19062  
    3939               const text_t &gsdlhome, ostream &logout) {
    4040
    41   text_t historyfile = filename_cat(gsdlhome, "etc", "history.db");
     41  text_t historyfile = filename_cat(gsdlhome, "etc", "history.gdb");
    4242 
    4343  bool result = false;
     
    7171bool set_history_info (const text_t &userid, const text_t &history, const text_t &gsdlhome, bool display) {
    7272
    73   text_t historyfile = filename_cat(gsdlhome, "etc", "history.db");
     73  text_t historyfile = filename_cat(gsdlhome, "etc", "history.gdb");
    7474 
    7575  bool result = false;
     
    125125bool delete_all_history_info (const text_t &userid, const text_t &gsdlhome) {
    126126
    127   text_t historyfile = filename_cat(gsdlhome, "etc", "history.db");
     127  text_t historyfile = filename_cat(gsdlhome, "etc", "history.gdb");
    128128 
    129129  // open the history database 
Note: See TracChangeset for help on using the changeset viewer.