mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Put in missing \ns on the end of ast_logs (issue #7936 reported by wojtekka)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@43933 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1896,7 +1896,7 @@ static int misdn_call(struct ast_channel *ast, char *dest, int timeout)
|
||||
|
||||
{
|
||||
struct chan_list *ch=MISDN_ASTERISK_TECH_PVT(ast);
|
||||
if (!ch) { ast_verbose("No chan_list in misdn_call"); return -1;}
|
||||
if (!ch) { ast_verbose("No chan_list in misdn_call\n"); return -1;}
|
||||
|
||||
newbc->capability=ast->transfercapability;
|
||||
pbx_builtin_setvar_helper(ast,"TRANSFERCAPABILITY",ast_transfercapability2str(newbc->capability));
|
||||
@@ -2392,7 +2392,7 @@ static struct ast_frame *process_ast_dsp(struct chan_list *tmp, struct ast_frame
|
||||
if (!f || (f->frametype != AST_FRAME_DTMF))
|
||||
return frame;
|
||||
|
||||
ast_log(LOG_DEBUG, "Detected inband DTMF digit: %c", f->subclass);
|
||||
ast_log(LOG_DEBUG, "Detected inband DTMF digit: %c\n", f->subclass);
|
||||
|
||||
if (tmp->faxdetect && (f->subclass == 'f')) {
|
||||
/* Fax tone -- Handle and return NULL */
|
||||
|
Reference in New Issue
Block a user