dect
/
asterisk
Archived
13
0
Fork 0

Fixing bad line break from 312384

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@312423 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jrose 2011-04-01 17:28:33 +00:00
parent 8f809d2963
commit 2bfc800882
1 changed files with 2 additions and 1 deletions

View File

@ -16666,7 +16666,8 @@ static void parse_busy_pattern(struct ast_variable *v, struct ast_dsp_busy_patte
for (; ;) {
/* Scans the string for the next value in the pattern. If none, it checks to see if any have been entered so far. */
if(!sscanf(v->value, "%30d", &norval) && count_pattern == 0) { ast_log(LOG_ERROR, "busypattern= expects either busypattern=tonelength,quietlength or busypattern=t1length, q1length, t2length, q2length at line %d.\n", v->lineno);
if(!sscanf(v->value, "%30d", &norval) && count_pattern == 0) {
ast_log(LOG_ERROR, "busypattern= expects either busypattern=tonelength,quietlength or busypattern=t1length, q1length, t2length, q2length at line %d.\n", v->lineno);
break;
}