Update of /cvsroot/icomplete/icomplete/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13872/src
Modified Files:
parse.c
Log Message:
forgot to uncommenta to unlink temp files /tmp/icomplete-*
Index: parse.c
===================================================================
RCS file: /cvsroot/icomplete/icomplete/src/parse.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** parse.c 20 Dec 2005 02:44:36 -0000 1.5
--- parse.c 4 Jan 2006 02:10:29 -0000 1.6
***************
*** 795,801 ****
exit:
close (fdIn);
! // unlink (tmpnameIn);
close (fdOut);
! //unlink (tmpnameOut);
}
--- 795,801 ----
exit:
close (fdIn);
! unlink (tmpnameIn);
close (fdOut);
! unlink (tmpnameOut);
}
|