700ca9f Bug 622628 - fix coverity Defect Type: Integer handling issues

Authored and Committed by nhosoi 13 years ago
    Bug 622628 - fix coverity Defect Type: Integer handling issues
    
    https://bugzilla.redhat.com/show_bug.cgi?id=622628
    
    Comment:
    This is a typo where a bitwise AND was used instead of a logical AND
    on line 2185. The issue is not serious, as it only affect the "number
    of operations" counter for ldclt.  The second half of the condition
    is not even needed in fact, since we are guaranteed that "(ret ==
    LDAP_ALREADY_EXISTS)" is true at line 2185.
    
    Fix Description:
    Based upon the comment, removing the unnecessary second half of
    the condition.