You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2001/08/18 18:35:02 UTC

cvs commit: apr-util/ldap apr_ldap_compat.c

minfrin     01/08/18 09:35:02

  Modified:    ldap     apr_ldap_compat.c
  Log:
  Some style correction
  
  Revision  Changes    Path
  1.2       +6 -8      apr-util/ldap/apr_ldap_compat.c
  
  Index: apr_ldap_compat.c
  ===================================================================
  RCS file: /home/cvs/apr-util/ldap/apr_ldap_compat.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apr_ldap_compat.c	2001/08/18 09:48:05	1.1
  +++ apr_ldap_compat.c	2001/08/18 16:35:02	1.2
  @@ -83,18 +83,16 @@
    * LDAPv2 doesn't support extended search. Since auth_ldap doesn't use
    * it anyway, we just translate the extended search into a normal search.
    */
  -int
  -ldap_search_ext_s(LDAP *ldap, char *base, int scope, char *filter,
  -		  char **attrs, int attrsonly, void *servertrls, void *clientctrls,
  -		  void *timeout, int sizelimit, LDAPMessage **res)
  +int ldap_search_ext_s(LDAP *ldap, char *base, int scope, char *filter,
  +		      char **attrs, int attrsonly, void *servertrls, void *clientctrls,
  +		      void *timeout, int sizelimit, LDAPMessage **res)
   {
  -  return ldap_search_s(ldap, base, scope, filter, attrs, attrsonly, res);
  +    return ldap_search_s(ldap, base, scope, filter, attrs, attrsonly, res);
   }
   
  -void
  -ldap_memfree(void *p)
  +void ldap_memfree(void *p)
   {
  -  free(p);
  +    free(p);
   }
   
   #endif /* if LDAP_VERSION_MAX */