blob: 438bf285acde5f184e4191a66c17b2c1f32bd9ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ah,v 1.1 2008/09/18 13:04:30 joerg Exp $
--- pdns/communicator.cc.orig 2008-09-18 14:53:45.000000000 +0200
+++ pdns/communicator.cc
@@ -461,7 +461,7 @@ void CommunicatorClass::mainloop(void)
Utility::sleep(1);
exit(0);
}
- catch(exception &e) {
+ catch(std::exception &e) {
L<<Logger::Error<<"Communicator thread died because of STL error: "<<e.what()<<endl;
exit(0);
}
|