dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 53399 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r53399 | file | 2007-02-07 12:04:44 -0500 (Wed, 07 Feb 2007) | 2 lines

Directly load say.conf in load_module instead of calling the reload function. (issue #8946 reported by junky)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@53400 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-02-07 17:06:34 +00:00
parent 5c329f9401
commit 879c4e8cff
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ static int unload_module(void)
static int load_module(void)
{
reload();
say_cfg = ast_config_load("say.conf");
ast_cli_register_multiple(cli_playback, sizeof(cli_playback) / sizeof(struct ast_cli_entry));
return ast_register_application(app, playback_exec, synopsis, descrip);
}