# HG changeset patch # User Ethan Blanton # Date 1152309435 0 # Node ID 59af3aecf5807968ee8c1e61e56367ccd9b01150 # Parent 4ed8330435eb26c5749c743ad4939bb5434a1ec2 [gaim-migrate @ 16456] Suppress "Connect would have blocked", because it just confuses people committer: Tailor Script diff -r 4ed8330435eb -r 59af3aecf580 src/proxy.c --- 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 {