Skip to content

Commit

Permalink
fix one more instance of address that should be host
Browse files Browse the repository at this point in the history
  • Loading branch information
respectTheCode committed Oct 13, 2012
1 parent cabafa2 commit e44ce53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = function (ccg) {
client = net.connect({port: self.options.port, host: self.options.host});

client.on("connect", function () {
self.log("Connected to", self.options.address, self.options.port);
self.log("Connected to", self.options.host, self.options.port);
self.connected = true;

if (cb) {
Expand Down

0 comments on commit e44ce53

Please sign in to comment.