fix db path to use globals dir. Fixes windows service failure on opening/creating db's.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2389 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2006-08-25 05:50:49 +00:00
parent aa196711a1
commit b4d3a5089d
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ static void db_pick_path(char *dbname, char *buf, switch_size_t size)
if (strchr(dbname, '/')) {
strncpy(buf, dbname, size);
} else {
snprintf(buf, size, "%s%s%s.db", SWITCH_DB_DIR, SWITCH_PATH_SEPARATOR, dbname);
snprintf(buf, size, "%s%s%s.db", SWITCH_GLOBAL_dirs.db_dir, SWITCH_PATH_SEPARATOR, dbname);
}
}