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

found by Nalin Dahyabhai (Redhat).
This commit is contained in:
Kurt Zeilenga 2004-01-08 01:14:04 +00:00
parent 1dd604fb04
commit 57a7682f40

View File

@ -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;