diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-06-22 14:45:05 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2005-06-22 14:45:05 +0000 |
commit | 8187c3f305da2db645e8d0aabb3597c6e012dcf9 (patch) | |
tree | edd0473912a2061d021c354c7c0fed578015ed7f /src | |
parent | 32d668a555bb486a27f1899ef8156321ef27816a (diff) |
Put debug statements on either side of EXIM_DBOPEN() so as to pin down
crashes while opening hints files.
Diffstat (limited to 'src')
-rw-r--r-- | src/src/dbfn.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/src/dbfn.c b/src/src/dbfn.c index 928cf00f1..36110f3e9 100644 --- a/src/src/dbfn.c +++ b/src/src/dbfn.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/dbfn.c,v 1.3 2005/06/14 10:32:01 ph10 Exp $ */ +/* $Cambridge: exim/src/src/dbfn.c,v 1.4 2005/06/22 14:45:05 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -152,10 +152,15 @@ DEBUG(D_hints_lookup) debug_printf("locked %s\n", buffer); exclusive access to the database, so we can go ahead and open it. If we are expected to create it, don't do so at first, again so that we can detect whether we need to change its ownership (see comments about the lock file -above.) */ +above.) There have been regular reports of crashes while opening hints +databases - often this is caused by non-matching db.h and the library. To make +it easy to pin this down, there are now debug statements on either side of the +open call. */ sprintf(CS buffer, "%s/db/%s", spool_directory, name); +DEBUG(D_hints_lookup) debug_printf("EXIM_DBOPEN(%s)\n", buffer); EXIM_DBOPEN(buffer, flags, EXIMDB_MODE, &(dbblock->dbptr)); +DEBUG(D_hints_lookup) debug_printf("returned from EXIM_DBOPEN\n"); if (dbblock->dbptr == NULL && errno == ENOENT && flags == O_RDWR) { @@ -163,6 +168,7 @@ if (dbblock->dbptr == NULL && errno == ENOENT && flags == O_RDWR) debug_printf("%s appears not to exist: trying to create\n", buffer); created = TRUE; EXIM_DBOPEN(buffer, flags|O_CREAT, EXIMDB_MODE, &(dbblock->dbptr)); + DEBUG(D_hints_lookup) debug_printf("returned from EXIM_DBOPEN\n"); } save_errno = errno; |