K 10 svn:author V 6 marino K 8 svn:date V 27 2015-02-22T14:09:12.697131Z K 7 svn:log V 452 security/p5-Crypt-OpenSSL-X509: Fix [-Werror=logical-not-parentheses] This bug was first discovered by Fedora 22 team building with gcc5 and they reported it upstream: https://github.com/dsully/perl-crypt-openssl-x509/issues/39 I believe this patch is equivalent but a bit nicer than the fix suggested there. The problem is "not (c < 0)" is desired but "(not c) < 0)" is what the condition evaluates to. The joy of C. Approved by: Just fix it END