[asterisk-scf-commits] asterisk-scf/integration/bridging.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri Oct 29 08:44:34 CDT 2010
branch "master" has been updated
via 9195b05feb161830ee1d8b78c8f1db7edad67cfd (commit)
from 2daf93b1319e2d30b60e08a10e78d8d90e18cf3d (commit)
Summary of changes:
src/BridgeImpl.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 9195b05feb161830ee1d8b78c8f1db7edad67cfd
Author: Joshua Colp <jcolp at digium.com>
Date: Fri Oct 29 09:42:17 2010 -0400
Fix a warning when building under Windows.
diff --git a/src/BridgeImpl.cpp b/src/BridgeImpl.cpp
index 9c1e5c1..b49212d 100755
--- a/src/BridgeImpl.cpp
+++ b/src/BridgeImpl.cpp
@@ -498,7 +498,7 @@ void AsteriskSCF::BridgeService::BridgeImpl::addSessions(const AsteriskSCF::Sess
{
info = (*i)->setBridge(mPrx, mSessionListenerPrx);
}
- catch(const Ice::ConnectionLostException& ex)
+ catch(const Ice::ConnectionLostException&)
{
if(!policy.retry())
{
@@ -735,7 +735,7 @@ void AsteriskSCF::BridgeService::BridgeImpl::replaceSession(const AsteriskSCF::S
newMembers.push_back(new BridgeSession(*i, mSplicer.connect(*i), false));
break;
}
- catch(const Ice::ConnectionLostException& ex)
+ catch(const Ice::ConnectionLostException&)
{
if(!policy.retry())
{
-----------------------------------------------------------------------
--
asterisk-scf/integration/bridging.git
More information about the asterisk-scf-commits
mailing list