]> git.sur5r.net Git - openldap/commitdiff
minor cleanup
authorRalf Haferkamp <ralf@openldap.org>
Mon, 3 Jul 2006 16:29:30 +0000 (16:29 +0000)
committerRalf Haferkamp <ralf@openldap.org>
Mon, 3 Jul 2006 16:29:30 +0000 (16:29 +0000)
contrib/ldapc++/src/LDAPAsynConnection.cpp
contrib/ldapc++/src/LDAPException.h

index 6ffb5af4c3a4c6af85f2932f898f5b30a67601c8..4b2eb53601c11f68a6dffdfd89eff5b666253f8b 100644 (file)
@@ -72,7 +72,6 @@ void LDAPAsynConnection::init(const string& hostname, int port){
 }
 
 void LDAPAsynConnection::start_tls(){
-    int resCode;
     if( ldap_start_tls_s( cur_session, NULL, NULL ) != LDAP_SUCCESS ) {
         throw LDAPException(this);
     }
index 09d94f4ab5633596ba43cb6e0a911e1e44890dc4..63d813dca1478691dbb9c19cab36bb0773727932 100644 (file)
@@ -18,14 +18,15 @@ class LDAPAsynConnection;
  */
 class LDAPException{
                
-       public :
+    public :
         /**
          * Constructs a LDAPException-object from the parameters
          * @param res_code A valid LDAP result code.
          * @param err_string    An addional error message for the error
          *                      that happend (optional)
          */
-               LDAPException(int res_code, const std::string& err_string=std::string());
+        LDAPException(int res_code, 
+                const std::string& err_string=std::string());
                
         /**
          * Constructs a LDAPException-object from the error state of a
@@ -43,14 +44,13 @@ class LDAPException{
         /**
          * @return The Result code of the object
          */
-        
-               int getResultCode() const;
+        int getResultCode() const;
 
         /**
          * @return The error message that is corresponding to the result
          *          code .
          */
-               const std::string& getResultMsg() const;
+        const std::string& getResultMsg() const;
         
         /**
          * @return The addional error message of the error (if it was set)
@@ -61,11 +61,11 @@ class LDAPException{
          * This method can be used to dump the data of a LDAPResult-Object.
          * It is only useful for debugging purposes at the moment
          */
-               friend std::ostream& operator << (std::ostream &s, LDAPException e);
+        friend std::ostream& operator << (std::ostream &s, LDAPException e);
 
-       private :
-               int m_res_code;
-               std::string m_res_string;
-               std::string m_err_string;
+    private :
+        int m_res_code;
+        std::string m_res_string;
+        std::string m_err_string;
 };
 #endif //LDAP_EXCEPTION_H