]> granicus.if.org Git - pdns/commitdiff
Don't add braces with throw
authorGrégory Oestreicher <greg@kamago.net>
Thu, 22 Jun 2017 19:50:47 +0000 (21:50 +0200)
committerGrégory Oestreicher <greg@kamago.net>
Tue, 10 Apr 2018 19:56:26 +0000 (21:56 +0200)
modules/ldapbackend/ldapbackend.cc
modules/ldapbackend/ldaputils.cc

index 428c94f40683847ab84363e90f942264af4f512b..469f595e94f03d97926ed3385366bd0e7346ebcd 100644 (file)
@@ -111,7 +111,7 @@ LdapBackend::LdapBackend( const string &suffix )
   }
 
   if( m_pldap != NULL ) { delete( m_pldap ); }
-  throw( PDNSException( "Unable to connect to ldap server" ) );
+  throw PDNSException( "Unable to connect to ldap server" );
 }
 
 
@@ -159,7 +159,7 @@ bool LdapBackend::list( const DNSName& target, int domain_id, bool include_disab
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Unable to get zone " << target << " from LDAP directory: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPNoConnection &lnc )
   {
@@ -172,12 +172,12 @@ bool LdapBackend::list( const DNSName& target, int domain_id, bool include_disab
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to get zone " << target << " from LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
     g_log << Logger::Error << m_myname << " Caught STL exception for target " << target << ": " << e.what() << endl;
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 
   return false;
@@ -247,7 +247,7 @@ void LdapBackend::lookup( const QType &qtype, const DNSName &qname, DNSPacket *d
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Unable to search LDAP directory: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPNoConnection &lnc )
   {
@@ -260,12 +260,12 @@ void LdapBackend::lookup( const QType &qtype, const DNSName &qname, DNSPacket *d
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to search LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
     g_log << Logger::Error << m_myname << " Caught STL exception for qname " << qname << ": " << e.what() << endl;
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 }
 
@@ -521,17 +521,17 @@ bool LdapBackend::get( DNSResourceRecord &rr )
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Search failed: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Search failed: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
     g_log << Logger::Error << m_myname << " Caught STL exception for " << m_qname << ": " << e.what() << endl;
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 
   return false;
@@ -558,7 +558,7 @@ void LdapBackend::getUpdatedMasters( vector<DomainInfo>* domains )
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Unable to search LDAP directory: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPNoConnection &lnc )
   {
@@ -571,11 +571,11 @@ void LdapBackend::getUpdatedMasters( vector<DomainInfo>* domains )
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to search LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 
   while( m_pldap->getSearchEntry( msgid, result ) ) {
@@ -611,7 +611,7 @@ void LdapBackend::setNotified( uint32_t id, uint32_t serial )
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Unable to search LDAP directory: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPNoConnection &lnc )
   {
@@ -624,11 +624,11 @@ void LdapBackend::setNotified( uint32_t id, uint32_t serial )
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to search LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 
   if ( results.empty() )
@@ -665,11 +665,11 @@ void LdapBackend::setNotified( uint32_t id, uint32_t serial )
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to search LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 }
 
@@ -700,7 +700,7 @@ bool LdapBackend::getDomainInfo( const DNSName& domain, DomainInfo& di, bool get
   catch( LDAPTimeout &lt )
   {
     g_log << Logger::Warning << m_myname << " Unable to search LDAP directory: " << lt.what() << endl;
-    throw( DBException( "LDAP server timeout" ) );
+    throw DBException( "LDAP server timeout" );
   }
   catch( LDAPNoConnection &lnc )
   {
@@ -713,11 +713,11 @@ bool LdapBackend::getDomainInfo( const DNSName& domain, DomainInfo& di, bool get
   catch( LDAPException &le )
   {
     g_log << Logger::Error << m_myname << " Unable to search LDAP directory: " << le.what() << endl;
-    throw( PDNSException( "LDAP server unreachable" ) );   // try to reconnect to another server
+    throw PDNSException( "LDAP server unreachable" );   // try to reconnect to another server
   }
   catch( std::exception &e )
   {
-    throw( DBException( "STL exception" ) );
+    throw DBException( "STL exception" );
   }
 
   if( result.count( "sOARecord" ) && !result["sOARecord"].empty() )
index 92d888b7ea0f8beceeaf6139882924b7b8d4b0bc..13c929da3f82644b06fdd53d06b2c9dc3fff5f4e 100644 (file)
@@ -5,7 +5,7 @@ void ldapSetOption( LDAP *conn, int option, void *value )
 {
   if( ldap_set_option( conn, option, value ) != LDAP_OPT_SUCCESS )
   {
-    throw( LDAPException( "Unable to set option" ) );
+    throw LDAPException( "Unable to set option" );
   }
 }
 
@@ -13,7 +13,7 @@ void ldapGetOption( LDAP *conn, int option, void *value )
 {
   if( ldap_get_option( conn, option, value ) != LDAP_OPT_SUCCESS )
   {
-    throw( LDAPException( "Unable to get option" ) );
+    throw LDAPException( "Unable to get option" );
   }
 }