fix strange indentation in code example
authortb <tb@openbsd.org>
Sun, 2 Jan 2022 21:00:37 +0000 (21:00 +0000)
committertb <tb@openbsd.org>
Sun, 2 Jan 2022 21:00:37 +0000 (21:00 +0000)
lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3

index 2c16230..c4afb89 100644 (file)
@@ -1,4 +1,4 @@
-.\" $OpenBSD: X509_STORE_CTX_set_verify_cb.3,v 1.7 2021/11/17 16:08:32 schwarze Exp $
+.\" $OpenBSD: X509_STORE_CTX_set_verify_cb.3,v 1.8 2022/01/02 21:00:37 tb Exp $
 .\" full merge up to: OpenSSL a528d4f0 Oct 27 13:40:11 2015 -0400
 .\" selective merge up to: OpenSSL 24a535ea Sep 22 13:14:20 2020 +0100
 .\"
@@ -66,7 +66,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 .\" OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd $Mdocdate: November 17 2021 $
+.Dd $Mdocdate: January 2 2022 $
 .Dt X509_STORE_CTX_SET_VERIFY_CB 3
 .Os
 .Sh NAME
@@ -148,7 +148,7 @@ Default callback operation:
 .Bd -literal
 int
 verify_callback(int ok, X509_STORE_CTX *ctx)
- {
+{
        return ok;
 }
 .Ed