Merged revisions 243779 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r243779 | russell | 2010-01-28 09:03:17 -0600 (Thu, 28 Jan 2010) | 2 lines
  
  Fix a bogus third argument to ast_copy_string().
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@243780 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2010-01-28 15:07:23 +00:00
parent 0f7c1a8cc9
commit 9ae1efe42c
1 changed files with 5 additions and 4 deletions

View File

@ -18189,10 +18189,11 @@ static int function_sipchaninfo_read(struct ast_channel *chan, const char *cmd,
} else if (!strcasecmp(data, "peername")) {
ast_copy_string(buf, p->peername, len);
} else if (!strcasecmp(data, "t38passthrough")) {
if (p->t38.state == T38_DISABLED)
ast_copy_string(buf, "0", sizeof("0"));
else /* T38 is offered or enabled in this call */
ast_copy_string(buf, "1", sizeof("1"));
if (p->t38.state == T38_DISABLED) {
ast_copy_string(buf, "0", len);
} else { /* T38 is offered or enabled in this call */
ast_copy_string(buf, "1", len);
}
} else {
ast_channel_unlock(chan);
return -1;