Skip to content
Snippets Groups Projects
Commit aa7fdb1f authored by rswindell's avatar rswindell
Browse files

If the file's 'timetodl' (transfer time) value is 0, don't display the transfer

time (e.g. "00:00:00"). Synchronet v3 has always forced this value to 0 since
it's inaccurate over TCP/IP with the current hard-coded "CPS" rate of 3000
(i.e. bytes-per-second).
parent 539f5a3d
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) * * @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) * * @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* * * *
* Copyright 2011 Rob Swindell - http://www.synchro.net/copyright.html * * Copyright Rob Swindell - http://www.synchro.net/copyright.html *
* * * *
* This program is free software; you can redistribute it and/or * * This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License * * modify it under the terms of the GNU General Public License *
...@@ -75,7 +75,7 @@ void sbbs_t::fileinfo(file_t* f) ...@@ -75,7 +75,7 @@ void sbbs_t::fileinfo(file_t* f)
bprintf(text[FiDateUled],timestr(f->dateuled)); bprintf(text[FiDateUled],timestr(f->dateuled));
bprintf(text[FiDateDled],f->datedled ? timestr(f->datedled) : "Never"); bprintf(text[FiDateDled],f->datedled ? timestr(f->datedled) : "Never");
bprintf(text[FiTimesDled],f->timesdled); bprintf(text[FiTimesDled],f->timesdled);
if(f->size!=-1L) if(f->size>0 && f->timetodl>0)
bprintf(text[FiTransferTime],sectostr(f->timetodl,tmp)); bprintf(text[FiTransferTime],sectostr(f->timetodl,tmp));
if(f->altpath) { if(f->altpath) {
if(f->altpath<=cfg.altpaths) { if(f->altpath<=cfg.altpaths) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment