Increased outbound stat digits in size field

This commit is contained in:
Michiel Broek 2002-03-03 13:41:16 +00:00
parent 4b93c0f0b8
commit 7e223eea69
2 changed files with 6 additions and 3 deletions

View File

@ -4668,7 +4668,10 @@ v0.33.20 10-Feb-2002
Temporary added extra password handling logs.
If a binkp session comes in and there already is a session
with that node, mbcico stopts the binkp session with an error.
mbout:
The status display has now 9 digits for the outbound size.
mbsebbs:
On some systems the download taglists contained garbage after
the short filename causing wrong filenames at the users side.

View File

@ -79,7 +79,7 @@ int outstat()
if (!do_quiet) {
colour(10, 0);
printf("flavor size age address\n");
printf("flavor size age address\n");
colour(3, 0);
}
@ -96,7 +96,7 @@ int outstat()
age = time(NULL);
age -= tmp->time;
sprintf(temp, "%s %8lu %s %s", flstr, (long)tmp->size, str_time(age), ascfnode(&(tmp->addr), 0x1f));
sprintf(temp, "%s %9lu %s %s", flstr, (long)tmp->size, str_time(age), ascfnode(&(tmp->addr), 0x1f));
if (!do_quiet)
printf("%s\n", temp);