Commit 825c317012 for openssl.org

commit 825c3170126c5738436b974b9ef08f38b19301de
Author: Kim Brose <2803622+HarHarLinks@users.noreply.github.com>
Date:   Sun May 24 19:53:37 2026 +0200

    doc/man1/openssl-format-options.pod: fix example EB for RFC 7468 compliance

    The encapsulation boundaries as given in the example should comply
    to the referenced RFC 7468, as well as match other places in openssl.

    Fixes: 777182a0c77e "Document the -inform, etc., in openssl.pod"
    CLA: trivial

    Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org>
    Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
    MergeDate: Tue May 26 11:54:49 2026
    (Merged from https://github.com/openssl/openssl/pull/31282)

diff --git a/doc/man1/openssl-format-options.pod b/doc/man1/openssl-format-options.pod
index 17d305ef06..2da9bef5ef 100644
--- a/doc/man1/openssl-format-options.pod
+++ b/doc/man1/openssl-format-options.pod
@@ -73,11 +73,11 @@ a block of base-64 encoding (defined in IETF RFC 4648), with specific
 lines used to mark the start and end:

  Text before the BEGIN line is ignored.
- ----- BEGIN object-type -----
+ -----BEGIN object-type-----
  OT43gQKBgQC/2OHZoko6iRlNOAQ/tMVFNq7fL81GivoQ9F1U0Qr+DH3ZfaH8eIkX
  xT0ToMPJUzWAn8pZv0snA0um6SIgvkCuxO84OkANCVbttzXImIsL7pFzfcwV/ERK
  UM6j0ZuSMFOCr/lGPAoOQU0fskidGEHi1/kW+suSr28TqsyYZpwBDQ==
- ----- END object-type -----
+ -----END object-type-----
  Text after the END line is also ignored

 The I<object-type> must match the type of object that is expected.