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

index 1ad3b241e19ba070fb0371fe3ecfdff347b8b37f..9e420bb87ba80741707b880ff2abb1cabf59d4e4 100644 (file)
@@ -3028,18 +3028,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()