From: Howard Chu Date: Thu, 27 Mar 2003 17:30:43 +0000 (+0000) Subject: Fix: -ZZ was not requiring StartTLS to succeed. X-Git-Tag: NO_SLAP_OP_BLOCKS~24 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c9cf840731b1f96459273af4e7e2b02d82fd3bc4;p=openldap Fix: -ZZ was not requiring StartTLS to succeed. --- 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 );