From e44ce536d244d78a8511bda10a1fe52cc3e03855 Mon Sep 17 00:00:00 2001 From: Kevin Smith Date: Fri, 12 Oct 2012 21:26:48 -0400 Subject: [PATCH] fix one more instance of address that should be host --- lib/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connection.js b/lib/connection.js index a2e3ae0..7571c4e 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -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) {