bugfixes for upcoming 1.2.2 release

This commit is contained in:
Guenter Obiltschnig
2006-08-31 09:33:39 +00:00
parent 7dc7c657f3
commit 81ddac4ead
8 changed files with 74 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
//
// SocketNotifier.cpp
//
// $Id: //poco/1.2/Net/src/SocketNotifier.cpp#1 $
// $Id: //poco/1.2/Net/src/SocketNotifier.cpp#2 $
//
// Library: Net
// Package: Reactor
@@ -64,7 +64,7 @@ void SocketNotifier::addObserver(SocketReactor* pReactor, const Poco::AbstractOb
else if (observer.accepts(pReactor->_pErrorNotification))
_events.insert(pReactor->_pErrorNotification.get());
else if (observer.accepts(pReactor->_pTimeoutNotification))
_events.insert(pReactor->_pErrorNotification.get());
_events.insert(pReactor->_pTimeoutNotification.get());
}