# HG changeset patch # User viric@llimona # Date 1175815240 -7200 # Node ID c0a1c1e98b6aba9027c73be34f5567d11901d8ca # Parent 693f4b8a49d8c6751bc69531c1e0e53bc460df5c Fixed a bug in execute, calling error(). Wrong release again. diff -r 693f4b8a49d8 -r c0a1c1e98b6a execute.c --- a/execute.c Fri Apr 06 00:59:35 2007 +0200 +++ b/execute.c Fri Apr 06 01:20:40 2007 +0200 @@ -36,7 +36,7 @@ error("Reading the size of the name"); ofname = (char *) malloc(namesize); res = read(fd_read_filename, ofname, namesize); - if (res != sizeof(namesize)) + if (res != namesize) error("Reading the the out file name"); } close(fd_read_filename);