pidgin/pidgin

Remove commented-out calls to purple_connection_error.
cpw.resiak.disconnectreason
2007-09-18, Will Thompson
11d00e9f216f
Parents 42e5e5445a2f
Children 97e2d532c2ac
Remove commented-out calls to purple_connection_error.
--- 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;
}