summaryrefslogtreecommitdiff
path: root/src/cli-debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli-debug.c')
-rw-r--r--src/cli-debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli-debug.c b/src/cli-debug.c
index 3dcb90225d..2b0f88e2e3 100644
--- a/src/cli-debug.c
+++ b/src/cli-debug.c
@@ -285,7 +285,7 @@ int main(int argc, char **argv)
break;
}
- socket_open(&hd, hostname, portname, app_proto, SOCKET_FLAG_STARTTLS, NULL, NULL);
+ socket_open(&hd, hostname, portname, app_proto, SOCKET_FLAG_STARTTLS|SOCKET_FLAG_RAW, NULL, NULL);
hd.verbose = verbose;
do {
@@ -296,7 +296,7 @@ int main(int argc, char **argv)
ret = tls_tests[i].func(hd.session);
- if (ret != TEST_IGNORE) {
+ if (ret != TEST_IGNORE && ret != TEST_IGNORE2) {
printf("%58s...", tls_tests[i].test_name);
fflush(stdout);
}