Update of /cvsroot/radmind/radmind-assistant/rte
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6970
Modified Files:
copy.c
Log Message:
Larger buffer should make transcript copies faster.
Index: copy.c
===================================================================
RCS file: /cvsroot/radmind/radmind-assistant/rte/copy.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** copy.c 24 Feb 2006 22:00:34 -0000 1.2
--- copy.c 1 May 2006 14:19:31 -0000 1.3
***************
*** 21,25 ****
{
int ifd, ofd, rr;
! char buf[ MAXPATHLEN ] = { 0 };
if ( access( dest, F_OK ) == 0 ) {
--- 21,25 ----
{
int ifd, ofd, rr;
! char buf[ 8192 ] = { 0 };
if ( access( dest, F_OK ) == 0 ) {
|