diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-08-22 17:11:53 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-08-22 17:11:53 +0200 |
commit | e2c9c5cae99bc38c0dc477c903a339ea8743f639 (patch) | |
tree | 14630fe6e4e539662df0dd17e03d6b534ee24143 | |
parent | fa2be566a18ad644e7832d64c8e06a7c17587c0b (diff) | |
download | gnutls-starttls-fix.tar.gz |
gnutls-cli: do not exit if fast open is not supportedstarttls-fix
-rw-r--r-- | src/cli.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |