diff options
Diffstat (limited to 'src/lib/libssl/src/apps/s_server.c')
-rw-r--r-- | src/lib/libssl/src/apps/s_server.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/libssl/src/apps/s_server.c b/src/lib/libssl/src/apps/s_server.c index 450f98c7bc..77384ec201 100644 --- a/src/lib/libssl/src/apps/s_server.c +++ b/src/lib/libssl/src/apps/s_server.c | |||
@@ -455,7 +455,6 @@ sv_usage(void) | |||
455 | BIO_printf(bio_err, " -engine id - Initialise and use the specified engine\n"); | 455 | BIO_printf(bio_err, " -engine id - Initialise and use the specified engine\n"); |
456 | #endif | 456 | #endif |
457 | BIO_printf(bio_err, " -id_prefix arg - Generate SSL/TLS session IDs prefixed by 'arg'\n"); | 457 | BIO_printf(bio_err, " -id_prefix arg - Generate SSL/TLS session IDs prefixed by 'arg'\n"); |
458 | BIO_printf(bio_err, " -rand file:file:...\n"); | ||
459 | #ifndef OPENSSL_NO_TLSEXT | 458 | #ifndef OPENSSL_NO_TLSEXT |
460 | BIO_printf(bio_err, " -servername host - servername for HostName TLS extension\n"); | 459 | BIO_printf(bio_err, " -servername host - servername for HostName TLS extension\n"); |
461 | BIO_printf(bio_err, " -servername_fatal - on mismatch send fatal alert (default warning alert)\n"); | 460 | BIO_printf(bio_err, " -servername_fatal - on mismatch send fatal alert (default warning alert)\n"); |
@@ -696,7 +695,6 @@ s_server_main(int argc, char *argv[]) | |||
696 | const SSL_METHOD *meth = NULL; | 695 | const SSL_METHOD *meth = NULL; |
697 | int socket_type = SOCK_STREAM; | 696 | int socket_type = SOCK_STREAM; |
698 | ENGINE *e = NULL; | 697 | ENGINE *e = NULL; |
699 | char *inrand = NULL; | ||
700 | int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM; | 698 | int s_cert_format = FORMAT_PEM, s_key_format = FORMAT_PEM; |
701 | char *passarg = NULL, *pass = NULL; | 699 | char *passarg = NULL, *pass = NULL; |
702 | char *dpassarg = NULL, *dpass = NULL; | 700 | char *dpassarg = NULL, *dpass = NULL; |
@@ -969,11 +967,6 @@ s_server_main(int argc, char *argv[]) | |||
969 | engine_id = *(++argv); | 967 | engine_id = *(++argv); |
970 | } | 968 | } |
971 | #endif | 969 | #endif |
972 | else if (strcmp(*argv, "-rand") == 0) { | ||
973 | if (--argc < 1) | ||
974 | goto bad; | ||
975 | inrand = *(++argv); | ||
976 | } | ||
977 | #ifndef OPENSSL_NO_TLSEXT | 970 | #ifndef OPENSSL_NO_TLSEXT |
978 | else if (strcmp(*argv, "-servername") == 0) { | 971 | else if (strcmp(*argv, "-servername") == 0) { |
979 | if (--argc < 1) | 972 | if (--argc < 1) |