From 40b70bb9efdb32dbf2c9302acb815d7daf28625c Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 18 Dec 2010 07:52:48 -0800 Subject: [PATCH] Renaming variable sshEnabled -> sslEnabled --- lib/oauth.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/oauth.js b/lib/oauth.js index 991ca1b..f6d64a1 100644 --- a/lib/oauth.js +++ b/lib/oauth.js @@ -193,8 +193,8 @@ exports.OAuth.prototype._getNonce= function(nonceSize) { return result.join(''); } -exports.OAuth.prototype._createClient= function( port, hostname, sshEnabled, credentials ) { - return http.createClient(port, hostname, sshEnabled, credentials); +exports.OAuth.prototype._createClient= function( port, hostname, sslEnabled, credentials ) { + return http.createClient(port, hostname, sslEnabled, credentials); } exports.OAuth.prototype._prepareParameters= function( oauth_token, oauth_token_secret, method, url, extra_params ) {