]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Add alternate ordering for ossl-guide-migration
authorBob Beck <beck@openssl.org>
Tue, 24 Feb 2026 20:08:39 +0000 (13:08 -0700)
committerNeil Horman <nhorman@openssl.org>
Fri, 27 Feb 2026 18:14:50 +0000 (13:14 -0500)
Add alternate wordings for ossl-guide-migration so that its a bit easier
to find.

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
MergeDate: Fri Feb 27 18:45:50 2026
(Merged from https://github.com/openssl/openssl/pull/30165)

doc/man7/ossl-guide-migration.pod

index e06ac3af0acfa32e76ce1a4f3b523292a9700132..37d5d4c187bec3ad59e072300bad129cc7de8f17 100644 (file)
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-ossl-guide-migration, migration_guide
+ossl-guide-migration, migration_guide, ossl-migration-guide
 - OpenSSL Guide: Migrating from older OpenSSL versions
 
 =head1 SYNOPSIS
@@ -94,7 +94,7 @@ to the B<X509> layer to reduce the number of memory allocations and copies
 that are made. These changes can impact code which uses these functions if
 a returned pointer value which was not const in previous versions of OpenSSL
 has now been made const. When such a value is assigned to a non-const pointer
-variable you will get a compiler warning. .
+variable you will get a compiler warning.
 
 The returned values being const is an indication that you may not mutate these
 values safely.