svn commit: r1924621 - /apr/apr-util/branches/1.7.x/ldap/apr_ldap.c
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: minfrin
Date: Wed Mar 26 12:03:00 2025
New Revision: 1924621
URL: http://svn.apache.org/viewvc?rev=1924621&view=rev
Log:
apr_ldap: Remove second attempt to typedef apr_ldap_t.
Modified:
apr/apr-util/branches/1.7.x/ldap/apr_ldap.c
Modified: apr/apr-util/branches/1.7.x/ldap/apr_ldap.c
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/ldap/apr_ldap.c?rev=1924621&r1=1924620&r2=1924621&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/ldap/apr_ldap.c (original)
+++ apr/apr-util/branches/1.7.x/ldap/apr_ldap.c Wed Mar 26 12:03:00 2025
@@ -74,7 +74,7 @@
#define TO_BV_LEN(a) (a)
#endif
-typedef struct apr_ldap_t {
+struct apr_ldap_t {
apr_pool_t *pool;
#if !APR_HAS_OPENLDAP_LDAPSDK
const char *uri;
@@ -88,7 +88,7 @@ typedef struct apr_ldap_t {
LDAPControl **clientctrls;
apu_err_t err;
apr_status_t status;
-} apr_ldap_t;
+};
typedef struct apr_ldap_prepare_t {