mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-10 22:33:07 -05:00
include ac/ctype.h and initialize some variables to avoid compiler warnings
This commit is contained in:
parent
ed7f95edb0
commit
960041de8a
1 changed files with 4 additions and 3 deletions
|
|
@ -13,6 +13,7 @@
|
|||
#include <ac/string.h>
|
||||
#include <ac/time.h>
|
||||
#include <ac/errno.h>
|
||||
#include <ac/ctype.h>
|
||||
|
||||
#include "ldap-int.h"
|
||||
#ifdef LDAP_R_COMPILE
|
||||
|
|
@ -654,11 +655,11 @@ int ldap_pvt_sasl_secprops(
|
|||
char **props = ldap_str2charray( in, "," );
|
||||
unsigned sflags = 0;
|
||||
int got_sflags = 0;
|
||||
sasl_ssf_t max_ssf;
|
||||
sasl_ssf_t max_ssf = 0;
|
||||
int got_max_ssf = 0;
|
||||
sasl_ssf_t min_ssf;
|
||||
sasl_ssf_t min_ssf = 0;
|
||||
int got_min_ssf = 0;
|
||||
unsigned maxbufsize;
|
||||
unsigned maxbufsize = 0;
|
||||
int got_maxbufsize = 0;
|
||||
|
||||
if( props == NULL || secprops == NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue