# HG changeset patch # User Will Thompson # Date 1190153060 0 # Node ID 1cbda8e2b913566f6e98b82747e415bff175fe6e # Parent 1b420901ca3bae89f942db65e03b1efdc3cd2863 Remove commented-out calls to purple_connection_error. diff -r 1b420901ca3b -r 1cbda8e2b913 libpurple/protocols/irc/irc.c --- a/libpurple/protocols/irc/irc.c Tue Sep 18 21:56:56 2007 +0000 +++ b/libpurple/protocols/irc/irc.c Tue Sep 18 22:04:20 2007 +0000 @@ -357,7 +357,6 @@ if (pass && *pass) { buf = irc_format(irc, "vv", "PASS", pass); if (irc_send(irc, buf) < 0) { -/* purple_connection_error(gc, "Error sending password"); */ g_free(buf); return FALSE; } @@ -389,14 +388,12 @@ strlen(realname) ? realname : IRC_DEFAULT_ALIAS); g_free(tmp); if (irc_send(irc, buf) < 0) { -/* purple_connection_error(gc, "Error registering with server");*/ g_free(buf); return FALSE; } g_free(buf); buf = irc_format(irc, "vn", "NICK", purple_connection_get_display_name(gc)); if (irc_send(irc, buf) < 0) { -/* purple_connection_error(gc, "Error sending nickname");*/ g_free(buf); return FALSE; }