Skip to content
Snippets Groups Projects
Commit 4e395aac authored by Josh Roberson's avatar Josh Roberson
Browse files

Fix compilation of chan_h323.c since removal of the private channel structures (Bug # 3738)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5153 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e1459ede
No related branches found
No related tags found
No related merge requests found
......@@ -788,7 +788,7 @@ static struct ast_channel *oh323_new(struct oh323_pvt *pvt, int state, const cha
ast_update_use_count();
ast_mutex_lock(&pvt->lock);
if (ch) {
tmp->tech = &oh323_tech;
ch->tech = &oh323_tech;
snprintf(ch->name, sizeof(ch->name), "H323/%s", host);
ch->nativeformats = pvt->capability;
if (!ch->nativeformats) {
......@@ -2221,7 +2221,7 @@ int usecount()
char *description()
{
return desc;
return (char *) desc;
}
char *key()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment