From: Kurt Zeilenga Date: Sat, 10 Jan 2004 19:29:42 +0000 (+0000) Subject: Fix typo in slapd's slap_auxprop_init() function (ITS#2909) X-Git-Tag: OPENLDAP_REL_ENG_2_2_5~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c19a25d6f72306536bc6e66eecff0431d963c9b6;p=openldap Fix typo in slapd's slap_auxprop_init() function (ITS#2909) --- diff --git a/servers/slapd/sasl.c b/servers/slapd/sasl.c index 7ed1aad917..6ed92e3479 100644 --- a/servers/slapd/sasl.c +++ b/servers/slapd/sasl.c @@ -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;