Commit 32c69853 authored by Dr. Matthias St. Pierre's avatar Dr. Matthias St. Pierre
Browse files

Fix mixed indentation (and other whitespace issues)

parent 6fb7b089
Loading
Loading
Loading
Loading
+9 −7
Original line number Diff line number Diff line
@@ -1477,8 +1477,10 @@ static CAPI_KEY *capi_get_key(CAPI_CTX *ctx, const WCHAR *contname,
        ptype = PROV_RSA_AES;
    }
    if (ctx && ctx->debug_level >= CAPI_DBG_TRACE && ctx->debug_file) {
        /* above 'if' is [complementary] copy from CAPI_trace and serves
	 * as optimization to minimize [below] malloc-ations */
        /*
         * above 'if' is [complementary] copy from CAPI_trace and serves
         * as optimization to minimize [below] malloc-ations
         */
        char *_contname = wide_to_asc(contname);
        char *_provname = wide_to_asc(provname);

+6 −6
Original line number Diff line number Diff line
@@ -1362,8 +1362,8 @@ static int ssl_print_ticket(BIO *bio, int indent, const SSL *ssl,

        if (msglen < 4)
            return 0;
        ticket_age_add = (msg[0] << 24) | (msg[1] << 16) | (msg[2] << 8)
                          | msg[3];
        ticket_age_add =
            (msg[0] << 24) | (msg[1] << 16) | (msg[2] << 8) | msg[3];
        msglen -= 4;
        msg += 4;
        BIO_indent(bio, indent + 2, 80);
+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+37 −37

File changed.

Contains only whitespace changes.

Loading