[asterisk-commits] branch 1.2 r25442 -
/branches/1.2/res/res_features.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon May 8 04:16:11 MST 2006
Author: file
Date: Mon May 8 06:16:10 2006
New Revision: 25442
URL: http://svn.digium.com/view/asterisk?rev=25442&view=rev
Log:
Incorrect log statement when playing transfer sounds (issue #7008 reported and fixed by nathan)
Modified:
branches/1.2/res/res_features.c
Modified: branches/1.2/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/res/res_features.c?rev=25442&r1=25441&r2=25442&view=diff
==============================================================================
--- branches/1.2/res/res_features.c (original)
+++ branches/1.2/res/res_features.c Mon May 8 06:16:10 2006
@@ -742,7 +742,7 @@
}
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 @@
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);
More information about the asterisk-commits
mailing list