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

@@ -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);