Minor log improvement, updated TODO

This commit is contained in:
Michiel Broek
2003-09-13 21:32:00 +00:00
parent 7a9aaad934
commit 20375d7d66
3 changed files with 9 additions and 11 deletions

View File

@@ -1389,7 +1389,7 @@ int binkp_batch(file_list *to_send)
/*
* Send empty dataframe, most binkp mailers need it to detect EOF.
*/
binkp_send_data(txbuf, 0);
// binkp_send_data(txbuf, 0);
/*
* calculate time needed and bytes transferred
@@ -1466,7 +1466,11 @@ int binkp_batch(file_list *to_send)
if (strcasecmp(tmpg->remote, bp.gname) == 0) {
tmpg->state = NoState;
tmpg->offset = bp.goffset;
Syslog('+', "Remote wants %s again, offset %ld", bp.gname, bp.goffset);
if (bp.goffset) {
Syslog('+', "Remote wants %s for resync at offset %ld", bp.gname, bp.goffset);
} else {
Syslog('+', "Remote wants %s again", bp.gname);
}
bp.TxState = TxGetNextFile;
}
}