aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFCrypto_openssl.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-04-03 22:10:27 +0200
committerJay Berkenbilt <ejb@ql.org>2022-04-05 20:56:19 +0200
commit77e889495f7c513ba8677df5fe662f08053709eb (patch)
tree06191e152c3d7a4e398837ebc4f87038b1797bc9 /libqpdf/QPDFCrypto_openssl.cc
parent12f1eb15ca3fed6310402847559a7c99d3c77847 (diff)
downloadqpdf-77e889495f7c513ba8677df5fe662f08053709eb.tar.zst
Update some code manually to get better formatting results
Add comments to force line breaks, parenthesize function arguments that are contatenated strings, etc. -- these kinds of changes improve clang-format's results and also cause emacs cc-mode to match clang-format. After this type of change, most of the time, when clang-format and emacs disagree, clang-format is better.
Diffstat (limited to 'libqpdf/QPDFCrypto_openssl.cc')
-rw-r--r--libqpdf/QPDFCrypto_openssl.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libqpdf/QPDFCrypto_openssl.cc b/libqpdf/QPDFCrypto_openssl.cc
index a281bf79..52b2fa0e 100644
--- a/libqpdf/QPDFCrypto_openssl.cc
+++ b/libqpdf/QPDFCrypto_openssl.cc
@@ -208,8 +208,10 @@ QPDFCrypto_openssl::rijndael_init(
}
check_openssl(EVP_CIPHER_CTX_reset(cipher_ctx));
- check_openssl(EVP_CipherInit_ex(
- cipher_ctx, cipher, nullptr, key_data, cbc_block, encrypt));
+ check_openssl(
+ // line-break
+ EVP_CipherInit_ex(
+ cipher_ctx, cipher, nullptr, key_data, cbc_block, encrypt));
check_openssl(EVP_CIPHER_CTX_set_padding(cipher_ctx, 0));
}