chiark / gitweb /
changelog: Document -t option
[chiark-utils.git] / cprogs / rcopy-repeatedly.c
index 01a72186330a31ee3f70b23d006be70fa0a09edc..6468e80cfadfa7c273333b391ce2981a3c2481ab 100644 (file)
@@ -262,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;