Update of /cvsroot/gaim/gaim/src/protocols/msn
In directory usw-pr-cvs1:/tmp/cvs-serv18276/protocols/msn
Modified Files:
msn.c
Log Message:
i know this is what you really meant, rob
Index: msn.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- msn.c 2001/12/16 02:22:24 1.47
+++ msn.c 2001/12/16 02:28:35 1.48
@@ -949,12 +949,13 @@
serv_got_update(gc, user, 1, 0, 0, 0, status, 0);
} else if (!g_strncasecmp(buf, "OUT", 3)) {
char *tmp = buf;
- static char msg[MSN_BUF_LEN];
GET_NEXT(tmp);
if (!g_strncasecmp(tmp, "OTH", 3)) {
- g_snprintf(msg, sizeof(msg), _("You have been disconnected. You have signed on from another location."));
- do_error_dialog(msg, _("MSN Error"));
+ hide_login_progress(gc, _("You have been disconnected. You have "
+ "signed on from another location."));
+ signoff(gc);
+ return 0;
}
} else if (!g_strncasecmp(buf, "PRP", 3)) {
} else if (!g_strncasecmp(buf, "QNG", 3)) {
|