From: Matthias St. Pierre Date: Mon, 28 Aug 2023 11:22:24 +0000 (+0200) Subject: Fix misspelled deprecation macro name in comment X-Git-Tag: openssl-3.2.0-alpha1~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d5cfb229be8a52cdf961d9b7c5f6c1c0fa3b4f7;p=thirdparty%2Fopenssl.git Fix misspelled deprecation macro name in comment Commit 77c30753cd replaced the convenience macros `DEPRECATEDIN_{major}_{minor}` by `OSSL_DEPRECATEDIN_{major}_{minor}` but misspelled them in the comment. Reviewed-by: Tomas Mraz Reviewed-by: Hugo Landau Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/21868) --- diff --git a/include/openssl/macros.h b/include/openssl/macros.h index 4579fc8eb3d..55b825a1f1f 100644 --- a/include/openssl/macros.h +++ b/include/openssl/macros.h @@ -158,7 +158,7 @@ /* * Define macros for deprecation and simulated removal purposes. * - * The macros OSSL_DEPRECATED_{major}_{minor} are always defined for + * The macros OSSL_DEPRECATEDIN_{major}_{minor} are always defined for * all OpenSSL versions we care for. They can be used as attributes * in function declarations where appropriate. *