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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_tls_wrap.js')
-rw-r--r--lib/_tls_wrap.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js
index 6ffa5c74abb..8b912d805c5 100644
--- a/lib/_tls_wrap.js
+++ b/lib/_tls_wrap.js
@@ -1503,13 +1503,12 @@ function onConnectSecure() {
if (options.rejectUnauthorized) {
this.destroy(verifyError);
return;
- } else {
- debug('client emit secureConnect. rejectUnauthorized: %s, ' +
- 'authorizationError: %s', options.rejectUnauthorized,
- this.authorizationError);
- this.secureConnecting = false;
- this.emit('secureConnect');
}
+ debug('client emit secureConnect. rejectUnauthorized: %s, ' +
+ 'authorizationError: %s', options.rejectUnauthorized,
+ this.authorizationError);
+ this.secureConnecting = false;
+ this.emit('secureConnect');
} else {
this.authorized = true;
debug('client emit secureConnect. authorized:', this.authorized);