summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-22 17:11:53 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-08-22 17:11:53 +0200
commite2c9c5cae99bc38c0dc477c903a339ea8743f639 (patch)
tree14630fe6e4e539662df0dd17e03d6b534ee24143
parentfa2be566a18ad644e7832d64c8e06a7c17587c0b (diff)
downloadgnutls-starttls-fix.tar.gz
gnutls-cli: do not exit if fast open is not supportedstarttls-fix
-rw-r--r--src/cli.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cli.c b/src/cli.c
index 61be2cae7e..ad4e265f63 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -1619,8 +1619,7 @@ static void cmd_parser(int argc, char **argv)
fastopen = HAVE_OPT(FASTOPEN);
#else
if (HAVE_OPT(FASTOPEN)) {
- fprintf(stderr, "TCP Fast Open not supported for this OS\n");
- exit(1);
+ fprintf(stderr, "Warning: TCP Fast Open not supported on this OS\n");
}
#endif