im.pidgin.cpw.resiak.disconnectreason: 0141fe3770c587a7e64e2925360facc0b003fdca
resiak at soc.pidgin.im
resiak at soc.pidgin.im
Wed Oct 3 13:55:53 EDT 2007
revision: 0141fe3770c587a7e64e2925360facc0b003fdca
date: 2007-09-18T22:04:20
author: resiak at soc.pidgin.im
branch: im.pidgin.cpw.resiak.disconnectreason
changelog:
Remove commented-out calls to purple_connection_error.
manifest:
format_version "1"
new_manifest [5c85789015fee3b8adbbc75f3bc073e5aa5523fe]
old_revision [621d694cb1d0ce64dd8ff8a6d109259aec863d7a]
patch "libpurple/protocols/irc/irc.c"
from [27eec5dc0da175c99eddd5930521143de03f4b51]
to [9d72f189192bee9eb74a0b63c31c3b8aa44974e5]
-------------- next part --------------
#
#
# patch "libpurple/protocols/irc/irc.c"
# from [27eec5dc0da175c99eddd5930521143de03f4b51]
# to [9d72f189192bee9eb74a0b63c31c3b8aa44974e5]
#
============================================================
--- libpurple/protocols/irc/irc.c 27eec5dc0da175c99eddd5930521143de03f4b51
+++ libpurple/protocols/irc/irc.c 9d72f189192bee9eb74a0b63c31c3b8aa44974e5
@@ -357,7 +357,6 @@ static gboolean do_login(PurpleConnectio
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 @@ static gboolean do_login(PurpleConnectio
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;
}
More information about the Commits
mailing list