]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Fix indentation 9306/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 7 Jul 2020 09:27:22 +0000 (11:27 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 7 Jul 2020 09:27:22 +0000 (11:27 +0200)
pdns/pdns_recursor.cc

index cff8559494f9da1a8954379e283d453f103cef8b..8a7bdea54a0b05f6f02b8f21b605fc8173760e43 100644 (file)
@@ -2815,18 +2815,16 @@ static void houseKeeping(void *)
     }
     s_running=false;
   }
-  catch(PDNSException& ae)
-    {
-      s_running=false;
-      g_log<<Logger::Error<<"Fatal error in housekeeping thread: "<<ae.reason<<endl;
-      throw;
-    }
-  catch(...)
-    {
-      s_running=false;
-      g_log<<Logger::Error<<"Uncaught exception in housekeeping thread"<<endl;
-      throw;
-    }
+  catch(PDNSException& ae) {
+    s_running=false;
+    g_log<<Logger::Error<<"Fatal error in housekeeping thread: "<<ae.reason<<endl;
+    throw;
+  }
+  catch(...) {
+    s_running=false;
+    g_log<<Logger::Error<<"Uncaught exception in housekeeping thread"<<endl;
+    throw;
+  }
 }
 
 static void makeThreadPipes()