mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
fix missing declaration(s)
This commit is contained in:
parent
bd3a8c2d44
commit
582e67307f
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue