summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2006-03-06 11:11:11 +0000
committerOlle Johansson <oej@edvina.net>2006-03-06 11:11:11 +0000
commit9675cd2d424262e1af63cc4859e82a2eedb37182 (patch)
tree605d847927ce75f418abe758514e62f9bdaf6d8a
parentcfbce6db405410ede6e2713118416074aeae1335 (diff)
Make astmm compile (imported from 1.2)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12041 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 14c15a0fe..e804f7ae9 100644
--- a/channel.c
+++ b/channel.c
@@ -2122,7 +2122,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);