mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
LibCrypto: Format the comments in ASN1/PEM.h correctly
This commit is contained in:
parent
3f2b78a063
commit
e54a5b7fb8
Notes:
sideshowbarker
2024-07-19 04:22:50 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/e54a5b7fb88 Pull-request: https://github.com/SerenityOS/serenity/pull/2956
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue