From 2f517022d110a2e586735735953dda78051a5b95 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 3 Apr 2013 09:16:07 -0400 Subject: Fix copy and paste error found by Coverity Signed-off-by: Simo Sorce --- proxy/src/client/gpm_indicate_mechs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proxy/src') diff --git a/proxy/src/client/gpm_indicate_mechs.c b/proxy/src/client/gpm_indicate_mechs.c index 3c8a97c..51bb5a3 100644 --- a/proxy/src/client/gpm_indicate_mechs.c +++ b/proxy/src/client/gpm_indicate_mechs.c @@ -688,7 +688,7 @@ OM_uint32 gpm_indicate_mechs_by_attrs(OM_uint32 *minor_status, } } /* if excepted skip */ - if (j == desired_mech_attrs->count) { + if (j == except_mech_attrs->count) { continue; } } @@ -707,7 +707,7 @@ OM_uint32 gpm_indicate_mechs_by_attrs(OM_uint32 *minor_status, } } /* if not known skip */ - if (j != desired_mech_attrs->count) { + if (j != critical_mech_attrs->count) { continue; } } -- cgit