LibCrypto: Format the comments in ASN1/PEM.h correctly

This commit is contained in:
AnotherTest 2020-08-02 05:24:10 +04:30 committed by Andreas Kling
parent 3f2b78a063
commit e54a5b7fb8
Notes: sideshowbarker 2024-07-19 04:22:50 +09:00

View file

@ -46,7 +46,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
continue;
if (data_in[i] != '-') {
// read entire line
// Read entire line.
while ((i < input_length) && (data_in[i] != '\n'))
i++;
continue;
@ -54,7 +54,7 @@ static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
if (data_in[i] == '-') {
auto end_idx = i;
//read until end of line
// Read until end of line.
while ((i < input_length) && (data_in[i] != '\n'))
i++;
if (start_at) {