Renaming variable sshEnabled -> sslEnabled

This commit is contained in:
Daniel Hofstetter 2010-12-18 07:52:48 -08:00
parent 0a786bdcbc
commit 40b70bb9ef

View File

@ -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 ) {