From c6cb4ba159a8916243d7ac5a5c4e8d13942baf99 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 26 Feb 2024 15:27:01 +0000 Subject: Fix some coding style issues. --- modules/extra/ldap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/extra/ldap.cpp') 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; } -- cgit