From c9cf840731b1f96459273af4e7e2b02d82fd3bc4 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Thu, 27 Mar 2003 17:30:43 +0000 Subject: [PATCH] Fix: -ZZ was not requiring StartTLS to succeed. --- clients/tools/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/tools/common.c b/clients/tools/common.c index 864d9262d1..10fa47a834 100644 --- a/clients/tools/common.c +++ b/clients/tools/common.c @@ -440,7 +440,7 @@ tool_args( int argc, char **argv ) break; case 'Z': #ifdef HAVE_TLS - use_tls = 1; + use_tls++; #else fprintf( stderr, "%s: not compiled with TLS support\n", prog ); exit( EXIT_FAILURE ); -- 2.39.5