File transfer errors didn't increase attempt counter
This commit is contained in:
parent
a197b4f45a
commit
f1b6f31c91
@ -16,6 +16,10 @@ v0.35.06
|
|||||||
forward to, and with this information builds more reliable
|
forward to, and with this information builds more reliable
|
||||||
seen-by lines.
|
seen-by lines.
|
||||||
|
|
||||||
|
mbcico:
|
||||||
|
With filetransfer errors, the attempts counter was not
|
||||||
|
increased.
|
||||||
|
|
||||||
|
|
||||||
v0.35.05 19-Oct-2002 - 13-Nov-2002.
|
v0.35.05 19-Oct-2002 - 13-Nov-2002.
|
||||||
|
|
||||||
|
@ -290,7 +290,7 @@ int call(faddr *addr)
|
|||||||
|
|
||||||
if ((rc == MBERR_NOT_ZMH) || (rc == MBERR_SESSION_ERROR)) /* Session error */
|
if ((rc == MBERR_NOT_ZMH) || (rc == MBERR_SESSION_ERROR)) /* Session error */
|
||||||
putstatus(addr, 5, rc);
|
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);
|
putstatus(addr,1,rc);
|
||||||
else
|
else
|
||||||
putstatus(addr,0,rc);
|
putstatus(addr,0,rc);
|
||||||
|
Reference in New Issue
Block a user