dbh_open -> dbtext_db_open - bmf - bmf (Bayesian Mail Filter) 0.9.4 fork + patches
 (HTM) git clone git://git.codemadness.org/bmf
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8c0e2cad22ac8e72666e90b8069cb0b082e38429
 (DIR) parent 60b437c6d0bc19fc9f67ca8cfaf6cbfc50d47423
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 27 Oct 2018 19:33:42 +0200
       
       dbh_open -> dbtext_db_open
       
       Diffstat:
         M bmf.c                               |       2 +-
         M dbh.c                               |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/bmf.c b/bmf.c
       @@ -151,7 +151,7 @@ main(int argc, char **argv)
                }
                stats.extrema = (discrim_t *) malloc(stats.keepers * sizeof(discrim_t));
        
       -        pdb = dbh_open(dbname);
       +        pdb = dbtext_db_open(dbname);
                if (pdb == NULL) {
                        fprintf(stderr, "%s: cannot open database\n", argv[0]);
                        exit(2);
 (DIR) diff --git a/dbh.c b/dbh.c
       @@ -49,7 +49,7 @@ db_getnewcount(veciter_t * piter)
        }
        
        dbh_t *
       -dbh_open(cpchar dbname)
       +dbtext_db_open(cpchar dbname)
        {
                dbhtext_t *pthis = NULL;
                uint dirlen;