changeset 13929:59af3aecf580

[gaim-migrate @ 16456] Suppress "Connect would have blocked", because it just confuses people committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Fri, 07 Jul 2006 21:57:15 +0000
parents 4ed8330435eb
children 3dbcbc5e57e1
files src/proxy.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/proxy.c	Thu Jul 06 18:02:17 2006 +0000
+++ b/src/proxy.c	Fri Jul 07 21:57:15 2006 +0000
@@ -1021,8 +1021,9 @@
 
 	if (connect(fd, (struct sockaddr *)addr, addrlen) < 0) {
 		if ((errno == EINPROGRESS) || (errno == EINTR)) {
-			gaim_debug_warning("proxy",
-					   "Connect would have blocked.\n");
+			/* This just confuses people. */
+			/* gaim_debug_warning("proxy",
+			                   "Connect would have blocked.\n"); */
 			phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, no_one_calls, phb);
 		}
 		else {