Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorfukayatsu <fukayatsu@gmail.com>2012-04-16 22:37:32 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-04-16 23:38:26 +0400
commit0f95a93a2c1928c4524521c52cc4c88d48612fe4 (patch)
treedcba49832ec98cbb5e200bca389101f974957b2f /lib
parent0d1314233248cb9b236b98477d7b69b2bbf97c08 (diff)
tls: remove duplicate line
Diffstat (limited to 'lib')
-rw-r--r--lib/tls.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/tls.js b/lib/tls.js
index 4308eb70dde..c7b0825873e 100644
--- a/lib/tls.js
+++ b/lib/tls.js
@@ -1023,7 +1023,6 @@ Server.prototype.setOptions = function(options) {
if (options.secureProtocol) this.secureProtocol = options.secureProtocol;
if (options.crl) this.crl = options.crl;
if (options.ciphers) this.ciphers = options.ciphers;
- if (options.secureProtocol) this.secureProtocol = options.secureProtocol;
var secureOptions = options.secureOptions || 0;
if (options.honorCipherOrder) {
secureOptions |= constants.SSL_OP_CIPHER_SERVER_PREFERENCE;