File transfer errors didn't increase attempt counter

This commit is contained in:
Michiel Broek 2002-11-22 19:23:59 +00:00
parent a197b4f45a
commit f1b6f31c91
2 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,10 @@ v0.35.06
forward to, and with this information builds more reliable
seen-by lines.
mbcico:
With filetransfer errors, the attempts counter was not
increased.
v0.35.05 19-Oct-2002 - 13-Nov-2002.

View File

@ -290,7 +290,7 @@ int call(faddr *addr)
if ((rc == MBERR_NOT_ZMH) || (rc == MBERR_SESSION_ERROR)) /* Session error */
putstatus(addr, 5, rc);
else if ((rc == MBERR_NO_CONNECTION) || (rc == MBERR_UNKNOWN_SESSION))
else if ((rc == MBERR_NO_CONNECTION) || (rc == MBERR_UNKNOWN_SESSION) || (rc == MBERR_FTRANSFER))
putstatus(addr,1,rc);
else
putstatus(addr,0,rc);