mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-23 23:33:07 -05:00
Fix typo in slap_auxprop_init() (should not impact behavior) (ITS#2909)
found by Nalin Dahyabhai (Redhat).
This commit is contained in:
parent
1dd604fb04
commit
57a7682f40
1 changed files with 1 additions and 1 deletions
|
|
@ -608,7 +608,7 @@ slap_auxprop_init(
|
|||
sasl_auxprop_plug_t **plug,
|
||||
const char *plugname)
|
||||
{
|
||||
if ( !out_version | !plug ) return SASL_BADPARAM;
|
||||
if ( !out_version || !plug ) return SASL_BADPARAM;
|
||||
|
||||
if ( max_version < SASL_AUXPROP_PLUG_VERSION ) return SASL_BADVERS;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue