From c8f43d82b89e96631fd08b09299449a4304fea30 Mon Sep 17 00:00:00 2001 From: Hanno Becker Date: Thu, 23 May 2019 17:01:06 +0100 Subject: [PATCH] Improve readability of ssl_client2/ssl_server2 usage instructions --- programs/ssl/ssl_client2.c | 4 ++-- programs/ssl/ssl_server2.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/programs/ssl/ssl_client2.c b/programs/ssl/ssl_client2.c index b0bd3018a..5ac3985a2 100644 --- a/programs/ssl/ssl_client2.c +++ b/programs/ssl/ssl_client2.c @@ -146,11 +146,11 @@ int main( void ) " cid=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension.\n" \ " default: 0 (disabled)\n" \ " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \ - " default: same as 'cid'\n" \ + " default: same as 'cid' parameter\n" \ " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \ " default: \"\"\n" \ " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \ - " default: same as cid_val\n" + " default: same as 'cid_val' parameter\n" #else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ #define USAGE_CID "" #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ diff --git a/programs/ssl/ssl_server2.c b/programs/ssl/ssl_server2.c index 59e40e0ec..9f8d79e2c 100644 --- a/programs/ssl/ssl_server2.c +++ b/programs/ssl/ssl_server2.c @@ -231,11 +231,11 @@ int main( void ) " cid=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension.\n" \ " default: 0 (disabled)\n" \ " cid_renego=%%d Disable (0) or enable (1) the use of the DTLS Connection ID extension during renegotiation.\n" \ - " default: same as 'cid'\n" \ + " default: same as 'cid' parameter\n" \ " cid_val=%%s The CID to use for incoming messages (in hex, without 0x).\n" \ " default: \"\"\n" \ " cid_val_renego=%%s The CID to use for incoming messages (in hex, without 0x) after renegotiation.\n" \ - " default: same as 'cid_val'\n" + " default: same as 'cid_val' parameter\n" #else /* MBEDTLS_SSL_DTLS_CONNECTION_ID */ #define USAGE_CID "" #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */