aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/s_client.c7
-rw-r--r--apps/s_server.c7
2 files changed, 10 insertions, 4 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 5a5a90b1cb..a1ef64b13f 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -1389,8 +1389,11 @@ int s_client_main(int argc, char **argv)
case OPT_SPLIT_SEND_FRAG:
split_send_fragment = atoi(opt_arg());
if (split_send_fragment == 0) {
- /* Not allowed - set to a deliberately bad value */
- split_send_fragment = -1;
+ /*
+ * Not allowed - set to a deliberately bad value so we get an
+ * error message below
+ */
+ split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH + 1;
}
break;
case OPT_MAX_PIPELINES:
diff --git a/apps/s_server.c b/apps/s_server.c
index 870c7b24f9..35a22f7900 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -1517,8 +1517,11 @@ int s_server_main(int argc, char *argv[])
case OPT_SPLIT_SEND_FRAG:
split_send_fragment = atoi(opt_arg());
if (split_send_fragment == 0) {
- /* Not allowed - set to a deliberately bad value */
- split_send_fragment = -1;
+ /*
+ * Not allowed - set to a deliberately bad value so we get an
+ * error message below
+ */
+ split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH + 1;
}
break;
case OPT_MAX_PIPELINES: