提交 d230bd1d 编写于 作者: R Richard Levitte

Sort the disabled features alphabetically

Reviewed-by: NStephen Henson <steve@openssl.org>
上级 54180592
...@@ -722,31 +722,31 @@ static int SortFnByName(const void *_f1, const void *_f2) ...@@ -722,31 +722,31 @@ static int SortFnByName(const void *_f1, const void *_f2)
static void list_disabled(void) static void list_disabled(void)
{ {
BIO_puts(bio_out, "Disabled algorithms:\n"); BIO_puts(bio_out, "Disabled algorithms:\n");
#ifdef OPENSSL_NO_DH #ifdef OPENSSL_NO_DH
BIO_puts(bio_out, "DH\n"); BIO_puts(bio_out, "DH\n");
#endif #endif
#ifdef OPENSSL_NO_DSA #ifdef OPENSSL_NO_DSA
BIO_puts(bio_out, "DSA\n"); BIO_puts(bio_out, "DSA\n");
#endif #endif
#ifdef OPENSSL_NO_RSA
BIO_puts(bio_out, "RSA\n");
#endif
#ifdef OPENSSL_NO_EC #ifdef OPENSSL_NO_EC
BIO_puts(bio_out, "EC\n"); BIO_puts(bio_out, "EC\n");
#endif #endif
#ifdef OPENSSL_NO_EC2M #ifdef OPENSSL_NO_EC2M
BIO_puts(bio_out, "EC2M\n"); BIO_puts(bio_out, "EC2M\n");
#endif #endif
#ifndef ZLIB
BIO_puts(bio_out, "ZLIB\n");
#endif
#ifdef OPENSSL_NO_PSK #ifdef OPENSSL_NO_PSK
BIO_puts(bio_out, "PSK\n"); BIO_puts(bio_out, "PSK\n");
#endif #endif
#ifdef OPENSSL_NO_RSA
BIO_puts(bio_out, "RSA\n");
#endif
#ifdef OPENSSL_NO_SRP #ifdef OPENSSL_NO_SRP
BIO_puts(bio_out, "SRP\n"); BIO_puts(bio_out, "SRP\n");
#endif #endif
#ifndef ZLIB
BIO_puts(bio_out, "ZLIB\n");
#endif
} }
static LHASH_OF(FUNCTION) *prog_init(void) static LHASH_OF(FUNCTION) *prog_init(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册