diff src/multi.c @ 3382:e9a89676d120

[gaim-migrate @ 3401] No longer do we build libicq.so -- run make in src/protocols/icq if you feel you need it for some reason (you don't--use OSCAR) TOC is no longer compiled statically by default. If you need it for some reason, you can load the libtoc.so plugin. Ari Pollak fixed up some #ifdefs to get IM images to work in gtk2, and he fixed a few gtk font warnings elsewhere. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 07 Aug 2002 23:25:33 +0000
parents 8c394e9f0dfb
children 412d1035d666
line wrap: on
line diff
--- a/src/multi.c	Wed Aug 07 22:37:58 2002 +0000
+++ b/src/multi.c	Wed Aug 07 23:25:33 2002 +0000
@@ -944,9 +944,16 @@
 			u->gc->wants_to_die = TRUE;
 			signoff(u->gc);
 		} else {
-			do_error_dialog(_("You cannot log this account in; you do not have "
-					  "the protocol it uses loaded, or the protocol does "
-					  "not have a login function."), _("Login Error"));
+			if (u->protocol == PROTO_TOC)
+				do_error_dialog(_("You have attempted to login an IM account using the "
+						 "TOC protocol.  Because this protocol is inferior to "
+						 "OSCAR, it is now compiled as a plugin by default.  "
+						 "To login, edit this account to use OSCAR or load the "
+						  "TOC plugin."), _("Login Error"));
+			else
+				do_error_dialog(_("You cannot log this account in; you do not have "
+						  "the protocol it uses loaded, or the protocol does "
+						  "not have a login function."), _("Login Error"));
 		}
 		l = l->next;
 	}