On Tue, Feb 02, 2010 at 01:11:38PM +0100, Johannes Hofmann wrote:
On Sun, Jan 31, 2010 at 02:34:37AM +0000, corvid wrote:
As you may have already noticed, we're at RC1 for the next release. Johannes has built a tarball:
http://www.dillo.org/download/dillo-2.2-rc1.tar.bz2 SHA1: 146216a1541b20a3e042c62c0db8ee42f173ed01
Please test!
Ok, for now we know about the TCP blackhole issue reported by bf.
Any other issues or success stories maybe?
Fix for a compilation warning: diff -pru /home/jcid/C/Dillo/d2/dillo/dpid/dpidc.c dillo-2.2-rc1/dpid/dpidc.c --- /home/jcid/C/Dillo/d2/dillo/dpid/dpidc.c 2010-01-25 11:28:59.000000000 -0300 +++ dillo-2.2-rc1/dpid/dpidc.c 2010-02-01 14:25:01.000000000 -0300 @@ -98,7 +98,8 @@ int main(int argc, char *argv[]) } else if (strcmp(argv[1], "chat") == 0) { printf("Please enter the message: "); bzero(buffer,256); - fgets(buffer,255,stdin); + if (fgets(buffer,255,stdin) == NULL) + MSG_ERR("dpidc: Can't read the message\n"); } else { MSG_ERR("main: Unknown operation '%s'\n", argv[1]); print_usage(argv[0]); Everything else seems OK so far. I'm expecting feedback from "bf". -- Cheers Jorge.-