diff options
Diffstat (limited to 'modules/extra/ldap.cpp')
-rw-r--r-- | modules/extra/ldap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/ldap.cpp b/modules/extra/ldap.cpp index 58ecefd6d..bcd4b8406 100644 --- a/modules/extra/ldap.cpp +++ b/modules/extra/ldap.cpp @@ -220,7 +220,7 @@ public: private: #ifdef _WIN32 // Windows LDAP does not implement this so we need to do it. - int ldap_initialize(LDAP** ldap, const char* url) + int ldap_initialize(LDAP **ldap, const char *url) { URL_COMPONENTS urlComponents; memset(&urlComponents, 0, sizeof(urlComponents)); @@ -508,7 +508,7 @@ public: } } - LDAP* GetConnection() + LDAP *GetConnection() { return con; } |