Commit dba975bd authored by Paul Yang's avatar Paul Yang Committed by Richard Levitte
Browse files

Fix coding style in apps/passwd file



Reformat some indents and braces based on OpenSSL coding style spec.

Signed-off-by: default avatarPaul Yang <paulyang.inf@gmail.com>

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3586)
(cherry picked from commit 72d8b823)
parent 1bbbc573
Loading
Loading
Loading
Loading
+20 −20
Original line number Diff line number Diff line
@@ -198,17 +198,23 @@ int passwd_main(int argc, char **argv)
    }

    if ((in == NULL) && (passwds == NULL)) {
        /*
         * we use the following method to make sure what
         * in the 'else' section is always compiled, to
         * avoid rot of not-frequently-used code.
         */
        if (1) {
# ifndef OPENSSL_NO_UI
            /* build a null-terminated list */
            static char *passwds_static[2] = { NULL, NULL };

            passwds = passwds_static;
            if (in == NULL)
            if (in == NULL) {
                if (EVP_read_pw_string
                    (passwd_malloc, passwd_malloc_size, "Password: ",
                     !(passed_salt || in_noverify)) != 0)
                    goto end;
            }
            passwds[0] = passwd_malloc;
        } else {
# endif
@@ -217,7 +223,6 @@ int passwd_main(int argc, char **argv)
        }
    }


    if (in == NULL) {
        assert(passwds != NULL);
        assert(*passwds != NULL);
@@ -228,11 +233,9 @@ int passwd_main(int argc, char **argv)
                           quiet, table, reverse, pw_maxlen, usecrypt, use1,
                           useapr1))
                goto end;
        }
        while (*passwds != NULL);
    } else
        } while (*passwds != NULL);
    } else {
        /* in != NULL */
    {
        int done;

        assert(passwd != NULL);
@@ -240,9 +243,9 @@ int passwd_main(int argc, char **argv)
            int r = BIO_gets(in, passwd, pw_maxlen + 1);
            if (r > 0) {
                char *c = (strchr(passwd, '\n'));
                if (c != NULL)
                if (c != NULL) {
                    *c = 0;     /* truncate at newline */
                else {
                } else {
                    /* ignore rest of line */
                    char trash[BUFSIZ];
                    do
@@ -256,8 +259,7 @@ int passwd_main(int argc, char **argv)
                    goto end;
            }
            done = (r <= 0);
        }
        while (!done);
        } while (!done);
    }
    ret = 0;

@@ -433,9 +435,8 @@ static int do_passwd(int passed_salt, char **salt_p, char **salt_malloc_p,
    if (!passed_salt) {
# ifndef OPENSSL_NO_DES
        if (usecrypt) {
            if (*salt_malloc_p == NULL) {
            if (*salt_malloc_p == NULL)
                *salt_p = *salt_malloc_p = app_malloc(3, "salt buffer");
            }
            if (RAND_bytes((unsigned char *)*salt_p, 2) <= 0)
                goto end;
            (*salt_p)[0] = cov_2char[(*salt_p)[0] & 0x3f]; /* 6 bits */
@@ -452,9 +453,8 @@ static int do_passwd(int passed_salt, char **salt_p, char **salt_malloc_p,
        if (use1 || useapr1) {
            int i;

            if (*salt_malloc_p == NULL) {
            if (*salt_malloc_p == NULL)
                *salt_p = *salt_malloc_p = app_malloc(9, "salt buffer");
            }
            if (RAND_bytes((unsigned char *)*salt_p, 8) <= 0)
                goto end;