From: Paul Cadach Date: Thu, 28 Sep 2006 16:01:48 +0000 (+0000) Subject: Merged revisions 43877 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~4590 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bfa99306f557b0317d5321972624be32c6d3cce;p=thirdparty%2Fasterisk.git Merged revisions 43877 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r43877 | pcadach | 2006-09-28 21:56:21 +0600 (Чтв, 28 Сен 2006) | 1 line Fix compiler warning ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43888 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/h323/ast_h323.cxx b/channels/h323/ast_h323.cxx index f4c3ba3f7c..4232245882 100644 --- a/channels/h323/ast_h323.cxx +++ b/channels/h323/ast_h323.cxx @@ -1060,7 +1060,7 @@ static BOOL EmbedQSIGTunneledInfo(H323SignalPDU &pdu) for (int i = 0; i < protos.GetSize(); ++i) { if ((protos[i].GetTag() == H225_TunnelledProtocol_id::e_tunnelledProtocolObjectID) && - (((const PASN_ObjectId &)protos[i]).AsString() == OID_QSIG)) { + (((PASN_ObjectId &)protos[i]).AsString() == OID_QSIG)) { addQSIG = FALSE; break; }