summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_print.c
diff options
context:
space:
mode:
authorHans Wennborg <hans@chromium.org>2014-08-15 00:54:00 -0400
committerRich Salz <rsalz@akamai.com>2014-08-15 10:45:00 -0400
commit01e438f28844ad4f3fd7e8d772031524593d6441 (patch)
treecf2511fe6e8b80db96493a17f681af6192660458 /crypto/asn1/a_print.c
parent5effa35610f673bc3837b8972f7122b233ecbc54 (diff)
RT3023: Redundant logical expressions
Remove some redundant logical expressions Reviewed-by: Emilia Kasper <emilia@silkandcyanide.net>
Diffstat (limited to 'crypto/asn1/a_print.c')
-rw-r--r--crypto/asn1/a_print.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/asn1/a_print.c b/crypto/asn1/a_print.c
index d18e772320..2e4c5b5f13 100644
--- a/crypto/asn1/a_print.c
+++ b/crypto/asn1/a_print.c
@@ -75,7 +75,6 @@ int ASN1_PRINTABLE_type(const unsigned char *s, int len)
#ifndef CHARSET_EBCDIC
if (!( ((c >= 'a') && (c <= 'z')) ||
((c >= 'A') && (c <= 'Z')) ||
- (c == ' ') ||
((c >= '0') && (c <= '9')) ||
(c == ' ') || (c == '\'') ||
(c == '(') || (c == ')') ||