summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-12-05 20:42:53 +0000
committerAlan Conway <aconway@apache.org>2006-12-05 20:42:53 +0000
commit68b8e26505a167faf6ebe73b76605e8623860f2b (patch)
treed1dfb120d3977d68b9b103ded61f6912ccc8e6eb
parent3e0bb26f85f3b06898eb71dced013dc5a1a076ab (diff)
downloadqpid-python-68b8e26505a167faf6ebe73b76605e8623860f2b.tar.gz
2006-12-05 Jim Meyering <meyering@redhat.com>
* src/qpidd.cpp (main): Remove now-pointless FIXME comments. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@482772 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--cpp/src/qpidd.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/cpp/src/qpidd.cpp b/cpp/src/qpidd.cpp
index 525e2efe34..0cfa3207ff 100644
--- a/cpp/src/qpidd.cpp
+++ b/cpp/src/qpidd.cpp
@@ -20,7 +20,6 @@
*/
#include <Broker.h>
#include <Configuration.h>
-// FIXME
#include <signal.h>
#include <iostream>
#include <memory>
@@ -44,7 +43,6 @@ int main(int argc, char** argv)
config.usage();
}else{
broker = Broker::create(config);
-// FIXME
signal(SIGINT, handle_signal);
broker->run();
}