From: Bodo Möller Date: Wed, 23 Oct 2002 13:14:10 +0000 (+0000) Subject: fix warnings, and harmonize indentation X-Git-Tag: OpenSSL_0_9_7-beta4~105 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=27f08d6d4819b80196e9b5bff082a5fc1e68451d;p=oweals%2Fopenssl.git fix warnings, and harmonize indentation --- diff --git a/apps/ca.c b/apps/ca.c index 05a1e7c1e9..32fcae833b 100644 --- a/apps/ca.c +++ b/apps/ca.c @@ -3053,55 +3053,59 @@ X509_NAME *do_subject(char *subject, long chtype) sp++; /* skip leading / */ while (*sp) - { + { /* collect type */ ne_types[ne_num] = bp; while (*sp) - { + { if (*sp == '\\') /* is there anything to escape in the type...? */ + { if (*++sp) *bp++ = *sp++; else - { + { BIO_printf(bio_err, "escape character at end of string\n"); goto error; + } } else if (*sp == '=') - { + { sp++; *bp++ = '\0'; break; - } + } else *bp++ = *sp++; - } + } if (!*sp) - { + { BIO_printf(bio_err, "end of string encountered while processing type of subject name element #%d\n", ne_num); goto error; - } + } ne_values[ne_num] = bp; while (*sp) - { + { if (*sp == '\\') + { if (*++sp) *bp++ = *sp++; else - { + { BIO_printf(bio_err, "escape character at end of string\n"); goto error; + } } else if (*sp == '/') - { + { sp++; break; - } + } else *bp++ = *sp++; - } + } *bp++ = '\0'; ne_num++; - } + } if (!(n = X509_NAME_new())) goto error;