mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-03 12:25:35 +00:00
issue #5803
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7137 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2005-11-20 Josh Roberson <josh@asteriasgi.com>
|
||||
|
||||
* res/res_musiconhold.c: Correct typo in ast_copy_string() for class->mode. (issue #5803)
|
||||
|
||||
2005-11-19 Josh Roberson <josh@asteriasgi.com>
|
||||
|
||||
* channels/Makefile: Put chan_oss back into the default build. (issue #5799)
|
||||
|
||||
@@ -946,7 +946,7 @@ static int load_moh_classes(int reload)
|
||||
var = ast_variable_browse(cfg, cat);
|
||||
while (var) {
|
||||
if (!strcasecmp(var->name, "mode"))
|
||||
ast_copy_string(class->mode, var->value, sizeof(class->name));
|
||||
ast_copy_string(class->mode, var->value, sizeof(class->mode));
|
||||
else if (!strcasecmp(var->name, "directory"))
|
||||
ast_copy_string(class->dir, var->value, sizeof(class->dir));
|
||||
else if (!strcasecmp(var->name, "application"))
|
||||
|
||||
Reference in New Issue
Block a user