aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-08 12:06:46 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-08 12:06:46 +0000
commit604ae9f07738a826c3e26c820dc3dbc6ecf53b0f (patch)
treed503d2bc85520dc2a180b2a6a49f595587781c5f /res
parenta3201efdea8c8094c5a2ce28a966fb7131be5dca (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@25486 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 599ad398f..f83cadecc 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -742,7 +742,7 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st
}
if (!ast_strlen_zero(xfersound) && !ast_streamfile(transferer, xfersound, transferer->language)) {
if (ast_waitstream(transferer, "") < 0) {
- ast_log(LOG_WARNING, "Failed to play courtesy tone!\n");
+ ast_log(LOG_WARNING, "Failed to play transfer sound!\n");
}
}
ast_moh_stop(transferee);
@@ -806,7 +806,7 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st
if (!ast_strlen_zero(xfersound) && !ast_streamfile(newchan, xfersound, newchan->language)) {
if (ast_waitstream(newchan, "") < 0) {
- ast_log(LOG_WARNING, "Failed to play courtesy tone!\n");
+ ast_log(LOG_WARNING, "Failed to play transfer sound!\n");
}
}
ast_bridge_call_thread_launch(tobj);