aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-06 11:04:25 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-06 11:04:25 +0000
commita05672ab9ed3958df7185f4a400ada8c11ac9521 (patch)
treecc84ab21e76e381563c69be7e539645b3ab2012f /channel.c
parent9380a1a9f166153ee5e8b74732e22a0ddf42e3d0 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@12040 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 011bdaef3..bf1f3637c 100644
--- a/channel.c
+++ b/channel.c
@@ -2092,7 +2092,7 @@ char *ast_recvtext(struct ast_channel *chan, int timeout)
if (f->frametype == AST_FRAME_CONTROL && f->subclass == AST_CONTROL_HANGUP)
done = 1; /* force a break */
else if (f->frametype == AST_FRAME_TEXT) { /* what we want */
- buf = strndup((char *) f->data, f->datalen); /* dup and break */
+ buf = ast_strndup((char *) f->data, f->datalen); /* dup and break */
done = 1;
}
ast_frfree(f);