--- libraries/libldap/sasl.c 2000/07/15 21:25:47 1.29 +++ libraries/libldap/sasl.c 2000/07/16 22:56:30 1.30 @@ -1,4 +1,4 @@ -/* $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. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file @@ -410,7 +410,8 @@ ldap_sasl_interactive_bind_s( LDAP_CONST char *mechs, LDAPControl **serverControls, LDAPControl **clientControls, - LDAP_SASL_INTERACT_PROC *interact ) + LDAP_SASL_INTERACT_PROC *interact, + void *defaults ) { int rc; @@ -436,7 +437,8 @@ ldap_sasl_interactive_bind_s( } rc = ldap_int_sasl_bind( ld, dn, mechs, - serverControls, clientControls, interact ); + serverControls, clientControls, + interact, defaults ); return rc; }