Browse Source

Fix bad log message.

Change-Id: I23ffe96dd8700d72f8c4481d53471c5687528279
Fixes-Issue: CLIENT-525
Reviewed-on: http://gerrit.dmdirc.com/3970
Automatic-Compile: DMDirc Build Manager
Reviewed-by: Greg Holmes <greg@dmdirc.com>
changes/70/3970/2
Chris Smith 9 years ago
parent
commit
fa2f9195d3
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/parser/irc/IRCParser.java

+ 1
- 1
src/com/dmdirc/parser/irc/IRCParser.java View File

@@ -776,7 +776,7 @@ public class IRCParser extends BaseParser implements SecureParser, EncodingParse
776 776
 
777 777
             if (sockAddr.getAddress() instanceof Inet6Address) {
778 778
                 if (getBindIPv6() != null && !getBindIPv6().isEmpty()) {
779
-                    callDebugInfo(DEBUG_SOCKET, "Binding to IPv6: " + getBindIP());
779
+                    callDebugInfo(DEBUG_SOCKET, "Binding to IPv6: " + getBindIPv6());
780 780
                     try {
781 781
                         mySocket.bind(new InetSocketAddress(InetAddress.getByName(getBindIPv6()), 0));
782 782
                     } catch (IOException e) {

Loading…
Cancel
Save