diff plugins/ssl/ssl-gnutls.c @ 8375:1556970088d4

[gaim-migrate @ 9102] quoth marv: " I like "What You Get Is What You Get" better. This fixes a problem where yahoo was sending < and > to the core when it wasn't html, and so gtkimhtml wasn't displaying part of the message. It's fixed by making the prpl escape it first. While I was add it, it made it display "Buzz!!" when someone buzzes you, instead of it saying that they said <ding>. Note that the official client uses red letters, all caps, and 3 !'s, and makes the window shake, so what we do is pretty mild. I also fixed a compile warning." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 01 Mar 2004 05:13:45 +0000
parents 27c0cb0d8d07
children d7b8eb1f0a18
line wrap: on
line diff
--- a/plugins/ssl/ssl-gnutls.c	Mon Mar 01 02:51:13 2004 +0000
+++ b/plugins/ssl/ssl-gnutls.c	Mon Mar 01 05:13:45 2004 +0000
@@ -96,10 +96,10 @@
 
 	gnutls_transport_set_ptr(gnutls_data->session, GINT_TO_POINTER(source));
 
-	gaim_debug_info("gnutls", "Handshaking\n");
 
 	do
 	{
+		gaim_debug_info("gnutls", "Handshaking\n");
 		ret = gnutls_handshake(gnutls_data->session);
 	}
 	while ((ret == GNUTLS_E_AGAIN) || (ret == GNUTLS_E_INTERRUPTED));