mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
Fix bug in unused function
This commit is contained in:
parent
3d9cf98dad
commit
75d97a43eb
1 changed files with 2 additions and 2 deletions
|
|
@ -188,7 +188,7 @@ charray_strcmp( const char **a1, const char **a2 )
|
|||
}
|
||||
}
|
||||
|
||||
if ( ! ( a1[0] && a2[0] ) ) {
|
||||
if ( a1[0] || a2[0] ) {
|
||||
return( !0 );
|
||||
}
|
||||
|
||||
|
|
@ -205,7 +205,7 @@ charray_strcasecmp( const char **a1, const char **a2 )
|
|||
}
|
||||
}
|
||||
|
||||
if ( ! ( a1[0] && a2[0] ) ) {
|
||||
if ( a1[0] || a2[0] ) {
|
||||
return( !0 );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue