[asterisk-commits] chan vpb.cc: Fix compiler error. (asterisk[master])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Apr 1 05:38:34 CDT 2017
Joshua Colp has submitted this change and it was merged. ( https://gerrit.asterisk.org/5376 )
Change subject: chan_vpb.cc: Fix compiler error.
......................................................................
chan_vpb.cc: Fix compiler error.
Added missing channel technology read/write stream callback
initialization.
Change-Id: I829043a327d987e0d964485dd3d27964bebbd623
---
M channels/chan_vpb.cc
1 file changed, 4 insertions(+), 0 deletions(-)
Approvals:
Anonymous Coward #1000019: Verified
Joshua Colp: Looks good to me, approved
Corey Farrell: Looks good to me, but someone else must approve
diff --git a/channels/chan_vpb.cc b/channels/chan_vpb.cc
index 595ac8f..87342b1 100644
--- a/channels/chan_vpb.cc
+++ b/channels/chan_vpb.cc
@@ -373,7 +373,9 @@
hangup: vpb_hangup,
answer: vpb_answer,
read: vpb_read,
+ read_stream: NULL,
write: vpb_write,
+ write_stream: NULL,
send_text: NULL,
send_image: NULL,
send_html: NULL,
@@ -404,7 +406,9 @@
hangup: vpb_hangup,
answer: vpb_answer,
read: vpb_read,
+ read_stream: NULL,
write: vpb_write,
+ write_stream: NULL,
send_text: NULL,
send_image: NULL,
send_html: NULL,
--
To view, visit https://gerrit.asterisk.org/5376
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I829043a327d987e0d964485dd3d27964bebbd623
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: master
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
More information about the asterisk-commits
mailing list