You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2009/01/15 12:15:17 UTC

svn commit: r734668 - in /qpid/trunk/qpid/cpp/src/qpid: broker/QueueRegistry.cpp broker/QueueRegistry.h client/ConnectionImpl.cpp

Author: gsim
Date: Thu Jan 15 03:15:16 2009
New Revision: 734668

URL: http://svn.apache.org/viewvc?rev=734668&view=rev
Log:
Minor formatting fixes and typo correction.


Modified:
    qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.cpp
    qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.h
    qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp

Modified: qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.cpp?rev=734668&r1=734667&r2=734668&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.cpp Thu Jan 15 03:15:16 2009
@@ -97,11 +97,11 @@
     RWlock::ScopedRlock locker(lock);
     for (QueueMap::iterator i = queues.begin(); i != queues.end(); i++) {
         if (_lastNode){
-		    i->second->setLastNodeFailure();
-		} else {
-		    i->second->clearLastNodeFailure();
-		}
+            i->second->setLastNodeFailure();
+        } else {
+            i->second->clearLastNodeFailure();
+        }
     }
-	lastNode = _lastNode;
+    lastNode = _lastNode;
 }
 

Modified: qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.h
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.h?rev=734668&r1=734667&r2=734668&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.h (original)
+++ qpid/trunk/qpid/cpp/src/qpid/broker/QueueRegistry.h Thu Jan 15 03:15:16 2009
@@ -121,7 +121,7 @@
     int counter;
     MessageStore* store;
     management::Manageable* parent;
-	bool lastNode; //used to set mode on queue declare
+    bool lastNode; //used to set mode on queue declare
 
     //destroy impl that assumes lock is already held:
     void destroyLH (const string& name);

Modified: qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp?rev=734668&r1=734667&r2=734668&view=diff
==============================================================================
--- qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp (original)
+++ qpid/trunk/qpid/cpp/src/qpid/client/ConnectionImpl.cpp Thu Jan 15 03:15:16 2009
@@ -95,7 +95,7 @@
     session->setChannel(channel ? channel : nextChannel++);
     boost::weak_ptr<SessionImpl>& s = sessions[session->getChannel()];
     boost::shared_ptr<SessionImpl> ss = s.lock();
-    if (ss) throw SessionBusyException(QPID_MSG("Channel " << ss->getChannel() << " attachd to " << ss->getId()));
+    if (ss) throw SessionBusyException(QPID_MSG("Channel " << ss->getChannel() << " attached to " << ss->getId()));
     s = session;
 }