mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
fix missing declaration(s)
This commit is contained in:
parent
bd3a8c2d44
commit
582e67307f
@ -831,6 +831,7 @@ static int chk_crypt(
|
||||
const char **text )
|
||||
{
|
||||
unsigned int i;
|
||||
char *cr;
|
||||
|
||||
for( i=0; i<cred->bv_len; i++) {
|
||||
if(cred->bv_val[i] == '\0') {
|
||||
@ -874,7 +875,7 @@ static int chk_unix(
|
||||
const char **text )
|
||||
{
|
||||
unsigned int i;
|
||||
char *pw;
|
||||
char *pw, *cr;
|
||||
|
||||
for( i=0; i<cred->bv_len; i++) {
|
||||
if(cred->bv_val[i] == '\0') {
|
||||
|
Loading…
Reference in New Issue
Block a user