[asterisk-commits] pcadach: branch 1.4 r43877 - /branches/1.4/channels/h323/ast_h323.cxx

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu Sep 28 08:56:22 MST 2006


Author: pcadach
Date: Thu Sep 28 10:56:21 2006
New Revision: 43877

URL: http://svn.digium.com/view/asterisk?rev=43877&view=rev
Log:
Fix compiler warning

Modified:
    branches/1.4/channels/h323/ast_h323.cxx

Modified: branches/1.4/channels/h323/ast_h323.cxx
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/h323/ast_h323.cxx?rev=43877&r1=43876&r2=43877&view=diff
==============================================================================
--- branches/1.4/channels/h323/ast_h323.cxx (original)
+++ branches/1.4/channels/h323/ast_h323.cxx Thu Sep 28 10:56:21 2006
@@ -1042,7 +1042,7 @@
 		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;
 			}



More information about the asterisk-commits mailing list