aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-04-22 14:17:12 +0000
committerBen Laurie <ben@openssl.org>1999-04-22 14:17:12 +0000
commit6cda1005f8b9d9dc834a13feb809f52e1bac443d (patch)
tree733576615d6d1d208cd732b5b80dd1582d6aa53e /crypto
parent90b8bbb8daecadaaa729398da951768135c688eb (diff)
downloadopenssl-6cda1005f8b9d9dc834a13feb809f52e1bac443d.tar.gz
Reverse unexplained change.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/x509/by_dir.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/x509/by_dir.c b/crypto/x509/by_dir.c
index dfc71b4159..95c7aa92b0 100644
--- a/crypto/x509/by_dir.c
+++ b/crypto/x509/by_dir.c
@@ -197,11 +197,7 @@ static int add_cert_dir(BY_DIR *ctx, const char *dir, int type)
ss=s;
s=p+1;
len=(int)(p-ss);
- if (len == 0)
- {
- if (ss == p) break;
- continue;
- }
+ if (len == 0) continue;
for (j=0; j<ctx->num_dirs; j++)
if (strncmp(ctx->dirs[j],ss,(unsigned int)len) == 0)
continue;