]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
add missing throw in pipe backend
authorKees Monshouwer <mind04@monshouwer.org>
Thu, 30 Jun 2016 11:00:10 +0000 (13:00 +0200)
committermind04 <mind04@monshouwer.org>
Thu, 30 Jun 2016 11:00:10 +0000 (13:00 +0200)
modules/pipebackend/pipebackend.cc

index 7806093d423203c2faf98db39b94f5f41fab1d23..c4518d11723bb2e9a6da83918f4c63cdf9edb884 100644 (file)
@@ -104,6 +104,7 @@ PipeBackend::PipeBackend(const string &suffix)
    }
    catch(const ArgException &A) {
       L<<Logger::Error<<kBackendId<<" Unable to launch, fatal argument error: "<<A.reason<<endl;
+      throw;
    }
    catch(...) {
       throw;