patch 18-6 looks very good, except that it doesn't work with X in 24bpp mode, but that doesn't concern me much. It used to work using my patch to the 16bit patch, so this functionality could easily be restored if somebody needs it.
Attached is a minor change I made to tcp.c
Regards,
Svenni.
-- Sveinn Sveinsson | mailto:svenni@strengur.is Strengur ltd Computer Consultants | mailto:ssveinss@informix.com Ármúla 7 | Phone: +354-550-9000 IS-108 Reykjavik | Fax: +354-550-9010 Iceland
diff -Naur rdesktop-patched/tcp.c rdesktop-patched2/tcp.c
--- rdesktop-patched/tcp.c Tue Jan 9 09:28:28 2001
+++ rdesktop-patched2/tcp.c Tue Jan 9 09:29:45 2001
@@ -120,7 +120,7 @@
in.end += rcvd;
length -= rcvd;
}
- else if (uisocket != -1 && FD_ISSET (uisocket, &rfds))
+ if (uisocket != -1 && FD_ISSET (uisocket, &rfds))
{
ui_process_events ();
}