dect
/
asterisk
Archived
13
0
Fork 0

Don't set the formats before we stop indications. (issue #6380)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9759 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
twisted 2006-02-13 17:50:53 +00:00
parent dd08051ba9
commit c57df5a5da
1 changed files with 2 additions and 1 deletions

View File

@ -985,6 +985,8 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
}
}
ast_indicate(chan, -1);
if (ast_set_write_format(chan, AST_FORMAT_SLINEAR) < 0) {
ast_log(LOG_WARNING, "Unable to set '%s' to write linear mode\n", chan->name);
goto outrun;
@ -995,7 +997,6 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
goto outrun;
}
ast_indicate(chan, -1);
retryzap = strcasecmp(chan->tech->type, "Zap");
user->zapchannel = !retryzap;