dect
/
asterisk
Archived
13
0
Fork 0

fix trunk building

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@227643 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2009-11-04 16:25:15 +00:00
parent 22a9bedb8b
commit 8e1f30dc15
1 changed files with 2 additions and 2 deletions

View File

@ -12623,7 +12623,7 @@ static void *ss7_linkset(void *data)
case CPG_EVENT_PROGRESS:
case CPG_EVENT_INBANDINFO:
{
struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROGRESS, };
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_PROGRESS } };
ast_debug(1, "Queuing frame PROGRESS on CIC %d\n", p->cic);
dahdi_queue_frame(p, &f, linkset);
p->progress = 1;
@ -12845,7 +12845,7 @@ static void *ss7_linkset(void *data)
isup_rel(ss7, e->acm.call, -1);
break;
} else {
struct ast_frame f = { AST_FRAME_CONTROL, AST_CONTROL_PROCEEDING, };
struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_PROCEEDING } };
p = linkset->pvts[chanpos];