chiark / gitweb /
changelog: finalise 5.0.0
[chiark-utils.git] / cprogs / rcopy-repeatedly.c
index fc2741d31b038bbcd2e7626bd20fa1e648a3256c..6468e80cfadfa7c273333b391ce2981a3c2481ab 100644 (file)
@@ -24,7 +24,6 @@
  *
  *   See the --help for options.
  */     
-
 /*
  * rcopy-repeatedly is
  *  Copyright (C) 2008 Ian Jackson <ian@davenant.greenend.org.uk>
@@ -46,7 +45,6 @@
  * Foundation's website at www.fsf.org, or the GNU Project website at
  * www.gnu.org.
  */
-
 /*
  * protocol is:
  *   server sends banner
@@ -264,12 +262,9 @@ static void bandlimit_sendend(uint64_t bytes, int *interval_usec_update) {
 static void copyfile(FILE *sf, copyfile_die_fn *sdie, const char *sxi,
                     FILE *df, copyfile_die_fn *ddie, const char *dxi,
                     uint64_t lstart, int amsender) {
-  struct timespec ts_last;
   int now, r;
   uint64_t l=lstart, done=0;
 
-  ts_last= ts_sendstart;
-
   while (l>0) {
     now= l < sizeof(mainbuf) ? l : sizeof(mainbuf);
     if (now > txblocksz) now= txblocksz;