[BACK]Return to session.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / rsync

Diff for /src/usr.bin/rsync/session.c between version 1.1 and 1.2

version 1.1, 2019/02/10 23:18:28 version 1.2, 2019/02/10 23:24:14
Line 29 
Line 29 
  * This only prints as the client.   * This only prints as the client.
  */   */
 static void  static void
 stats_log(struct sess *sess,  stats_log(struct sess *sess,
         uint64_t tread, uint64_t twrite, uint64_t tsize)          uint64_t tread, uint64_t twrite, uint64_t tsize)
 {  {
         double           tr, tw, ts;          double           tr, tw, ts;
Line 89 
Line 89 
                 "%.*lf %s sent, "                  "%.*lf %s sent, "
                 "%.*lf %s read, "                  "%.*lf %s read, "
                 "%.*lf %s file size",                  "%.*lf %s file size",
                 trsz, tr, tru,                  trsz, tr, tru,
                 twsz, tw, twu,                  twsz, tw, twu,
                 tssz, ts, tsu);                  tssz, ts, tsu);
 }  }
   
Line 158 
Line 158 
         stats_log(sess, tr, tw, ts);          stats_log(sess, tr, tw, ts);
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2