Skip to content
Snippets Groups Projects
Commit 562a18f5 authored by Jeff Peeler's avatar Jeff Peeler
Browse files

fix trunk building

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227643 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 2bbda7a7
No related branches found
No related tags found
No related merge requests found
......@@ -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];
 
......
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