# HG changeset patch
# User Mark Doliner <mark@kingant.net>
# Date 1230522573 0
# Node ID 5a435e953bc61cdbde2aba6f335370051f582118
# Parent  689cfb82242e4c995a969121a7a4b9806446e95a
Don't mention TOC in this error message.  I think this error is too
technical and is ripe for improvement, but I couldn't come up with
anything better.

diff -r 689cfb82242e -r 5a435e953bc6 libpurple/protocols/oscar/oscar.c
--- a/libpurple/protocols/oscar/oscar.c	Sun Dec 28 00:39:39 2008 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Mon Dec 29 03:49:33 2008 +0000
@@ -1653,10 +1653,10 @@
 	}
 	if (in != '\n') {
 		char buf[256];
-		GHashTable *ui_info = purple_core_get_ui_info();		
-		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  You may want to use TOC until "
-			"this is fixed.  Check %s for updates."),
-				   ((ui_info && g_hash_table_lookup(ui_info, "website")) ? (char *)g_hash_table_lookup(ui_info, "website") : PURPLE_WEBSITE));
+		GHashTable *ui_info = purple_core_get_ui_info();
+		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  "
+				"If so, check %s for updates."),
+				((ui_info && g_hash_table_lookup(ui_info, "website")) ? (char *)g_hash_table_lookup(ui_info, "website") : PURPLE_WEBSITE));
 		purple_notify_warning(pos->gc, NULL,
 							_("Unable to get a valid AIM login hash."),
 							buf);