]> git.ipfire.org Git - thirdparty/openssl.git/commit
fix: Have util/mkerr.pl comply better with our coding style
authorRichard Levitte <levitte@openssl.org>
Tue, 16 Jul 2024 04:52:07 +0000 (06:52 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 21 Aug 2024 08:55:59 +0000 (10:55 +0200)
commit772481cf7c3f95e5c8d82ef4094d9030f8432460
treec840d57cccdb6185de9d410909cfc52c2e29181a
parent523187df47cf6082004e872c6c47b202fce5d574
fix: Have util/mkerr.pl comply better with our coding style

util/mkerr.pl produced lines like these:

    {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE),
    "operation not supported for this keytype"},

According to our coding style, they should look like this:

    {ERR_PACK(ERR_LIB_EVP, 0, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE),
     "operation not supported for this keytype"},

This nit was correctly picked up by util/check-format.pl

Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24902)
util/mkerr.pl