aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 20:15:04 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-22 20:15:04 +0000
commit17db6392cb9e01670428793600ebf4fab88c433c (patch)
treedffc6786abcbd27261a3dad16c4f41592dda700f /res
parentb8f170954080e7f60db9c83e139f137ef637062e (diff)
Use the correct language when playing the transfer sound (issue #7109 reported by casper)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@29512 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index eaae5816d..30c00db27 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -641,7 +641,7 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p
ast_verbose(VERBOSE_PREFIX_3 "Unable to find extension '%s' in context '%s'\n", newext, transferer_real_context);
}
if (!ast_strlen_zero(xferfailsound))
- res = ast_streamfile(transferer, xferfailsound, transferee->language);
+ res = ast_streamfile(transferer, xferfailsound, transferer->language);
else
res = 0;
if (res) {