summaryrefslogtreecommitdiff
path: root/main/db.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-10-05 19:48:10 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-10-05 19:48:10 +0000
commit977d8e2c8a2411a6c92336b23563db8eeac9d7d7 (patch)
treed14cf0cf903355714b3d49e9fde12a471a80f752 /main/db.c
parent5b3347c715d5b479531618d9a0bb7d96c233da0c (diff)
Merged revisions 84851 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r84851 | tilghman | 2007-10-05 14:42:21 -0500 (Fri, 05 Oct 2007) | 2 lines Log exactly why we can't open the database, if we fail (closes issue #10887) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@84852 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/db.c')
-rw-r--r--main/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/db.c b/main/db.c
index f0ad5eaa7..c38d8c8cc 100644
--- a/main/db.c
+++ b/main/db.c
@@ -63,7 +63,7 @@ AST_MUTEX_DEFINE_STATIC(dblock);
static int dbinit(void)
{
if (!astdb && !(astdb = dbopen((char *)ast_config_AST_DB, O_CREAT | O_RDWR, AST_FILE_MODE, DB_BTREE, NULL))) {
- ast_log(LOG_WARNING, "Unable to open Asterisk database\n");
+ ast_log(LOG_WARNING, "Unable to open Asterisk database '%s': %s\n", ast_config_AST_DB, strerror(errno));
return -1;
}
return 0;