# HG changeset patch # User Sean Egan # Date 1054347609 0 # Node ID 9a3dbd24e80a992e16d00e5feae245006d27b679 # Parent 31f6f8b5e24b1dffe2e651b12e2c4d3b6c8b6141 [gaim-migrate @ 5983] Me spoke too soon. diff -r 31f6f8b5e24b -r 9a3dbd24e80a src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sat May 31 02:13:30 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sat May 31 02:20:09 2003 +0000 @@ -489,7 +489,7 @@ if ((cnv = gaim_find_conversation(sn))) gaim_conversation_write(cnv, NULL, buf, -1, WFLAG_SYSTEM, time(NULL)); - gaim_conversation_update_progress(cnv, NULL, u100); + gaim_conversation_update_progress(cnv, 0); g_free(dim); /* I guess? I don't see it anywhere else... -- mid */ g_free(sn); @@ -3672,9 +3672,9 @@ "Disconnected. Code is 0x%04x and msg is %s\n", code, msg); if ((fr) && (fr->conn) && (fr->conn->type == AIM_CONN_TYPE_BOS)) { if (code == 0x0001) { - gaim_connection_error_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); + gaim_connection_error(gc, _("You have been disconnected because you have signed on with this screen name at another location.")); } else { - gaim_connection_error_error(gc, _("You have been signed off for an unknown reason.")); + gaim_connection_error(gc, _("You have been signed off for an unknown reason.")); } od->killme = TRUE; }