From: Ben Laurie <ben@openssl.org> Date: Thu, 22 Apr 1999 14:17:12 +0000 (+0000) Subject: Reverse unexplained change. X-Git-Tag: OpenSSL_0_9_3beta1~285 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6cda1005f8b9d9dc834a13feb809f52e1bac443d;p=oweals%2Fopenssl.git Reverse unexplained change. --- 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;