From: Richard Mudgett Date: Sat, 26 Dec 2020 18:14:05 +0000 (-0600) Subject: chan_vpb.cc: Fix compile errors. X-Git-Tag: 18.2.0-rc1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d379845e63ad33641bf6fc322cefc616e5b9508;p=thirdparty%2Fasterisk.git chan_vpb.cc: Fix compile errors. Fix the usual compile problem when someone adds a new callback to struct ast_channel_tech. Change-Id: I9bdeb8a8cc65f03b2d6e4f2eb5809af47c906c32 --- diff --git a/channels/chan_vpb.cc b/channels/chan_vpb.cc index fe99d5df0b..cde5d483b9 100644 --- a/channels/chan_vpb.cc +++ b/channels/chan_vpb.cc @@ -372,6 +372,7 @@ static struct ast_channel_tech vpb_tech = { .call = vpb_call, .hangup = vpb_hangup, .answer = vpb_answer, + .answer_with_stream_topology = NULL, .read = vpb_read, .read_stream = NULL, .write = vpb_write, @@ -406,6 +407,7 @@ static struct ast_channel_tech vpb_tech_indicate = { .call = vpb_call, .hangup = vpb_hangup, .answer = vpb_answer, + .answer_with_stream_topology = NULL, .read = vpb_read, .read_stream = NULL, .write = vpb_write,