Don't add TLS param if no encryption is enabled

This commit is contained in:
Daniel Berteaud 2016-03-23 09:42:39 +01:00
parent 093a870376
commit 29b2f00111
1 changed files with 2 additions and 2 deletions

View File

@ -25,8 +25,8 @@ _EOF
$OUT .= "TLSServerCertIssuer=$issuer\n" if ($issuer ne ''); $OUT .= "TLSServerCertIssuer=$issuer\n" if ($issuer ne '');
$OUT .= "TLSServerCertSubject=$subject\n" if ($subject ne ''); $OUT .= "TLSServerCertSubject=$subject\n" if ($subject ne '');
} }
my $encryptions = (scalar @encryptions > 0) ? join(',', @encryptions) : 'unencrypted'; my $encryptions = (scalar @encryptions > 0) ? join(',', @encryptions) : '';
$OUT .=<<_EOF; $OUT .=<<_EOF if ($encryptions ne '');
TLSConnect=$encryptions TLSConnect=$encryptions
TLSAccept=$encryptions TLSAccept=$encryptions
_EOF _EOF