Diff for /libraries/libldap/sasl.c between versions 1.29 and 1.30

version 1.29, 2000/07/15 21:25:47 version 1.30, 2000/07/16 22:56:30
Line 1 Line 1
 /* $OpenLDAP: pkg/ldap/libraries/libldap/sasl.c,v 1.28 2000/07/13 20:54:47 kurt Exp $ */  /* $OpenLDAP: pkg/ldap/libraries/libldap/sasl.c,v 1.29 2000/07/15 21:25:47 kurt Exp $ */
 /*  /*
  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.   * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file   * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
Line 410  ldap_sasl_interactive_bind_s( Line 410  ldap_sasl_interactive_bind_s(
         LDAP_CONST char *mechs,          LDAP_CONST char *mechs,
         LDAPControl **serverControls,          LDAPControl **serverControls,
         LDAPControl **clientControls,          LDAPControl **clientControls,
         LDAP_SASL_INTERACT_PROC *interact )          LDAP_SASL_INTERACT_PROC *interact,
           void *defaults )
 {  {
         int rc;          int rc;
   
Line 436  ldap_sasl_interactive_bind_s( Line 437  ldap_sasl_interactive_bind_s(
         }          }
   
         rc = ldap_int_sasl_bind( ld, dn, mechs,          rc = ldap_int_sasl_bind( ld, dn, mechs,
                 serverControls, clientControls, interact );                  serverControls, clientControls,
                   interact, defaults );
   
         return rc;          return rc;
 }  }

Removed from v.1.29  
changed lines
  Added in v.1.30


______________
© Copyright 1998-2020, OpenLDAP Foundation, info@OpenLDAP.org