Skip to content
Snippets Groups Projects
Commit 57a7682f authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix typo in slap_auxprop_init() (should not impact behavior) (ITS#2909)

found by Nalin Dahyabhai (Redhat).
parent 1dd604fb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment