mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
ITS#2777 - fix previous commit
This commit is contained in:
parent
2ce26dc96e
commit
32a9ad1be8
3 changed files with 6 additions and 1 deletions
|
|
@ -30,7 +30,11 @@
|
|||
#include <sasl.h>
|
||||
#endif
|
||||
|
||||
#if 1
|
||||
#define SASL_MAX_BUFF_SIZE 262144
|
||||
#else
|
||||
#define SASL_MAX_BUFF_SIZE 65536
|
||||
#endif
|
||||
#define SASL_MIN_BUFF_SIZE 4096
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -808,9 +808,11 @@ lr->lr_res_matched ? lr->lr_res_matched : "" );
|
|||
ldap_free_request( ld, lr );
|
||||
}
|
||||
|
||||
#if 0
|
||||
if ( lc != NULL ) {
|
||||
ldap_free_connection( ld, lc, 0, 1 );
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,6 @@ get_line( char *line, int len, FILE *fp, const char *prompt )
|
|||
|
||||
return( line );
|
||||
}
|
||||
#endif
|
||||
|
||||
static char **
|
||||
get_list( const char *prompt )
|
||||
|
|
|
|||
Loading…
Reference in a new issue