From: Carl N Baldwin Date: Thu, 10 Nov 2005 17:18:51 +0000 (-0700) Subject: This should've never worked. I'm a little dissappointed that it did. X-Git-Tag: release-0.4~15^2~3 X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=commitdiff_plain;h=a0d9675e7514609651f14794a08ec2b61b0fe12e;p=backups%2F.git This should've never worked. I'm a little dissappointed that it did. --- diff --git a/main.cpp b/main.cpp index 06d1a2f..4e71163 100644 --- a/main.cpp +++ b/main.cpp @@ -35,7 +35,7 @@ bool copy_until_full( I begin, I end, O out, INT &space ) { if( blocksize <= space ) { space -= blocksize; - out = *begin; + *out = *begin; ++out; } else { // We missed a file that should be included so the backup is not complete