summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_transfer.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-02-01 17:15:02 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-02-01 17:15:02 +0000
commit0a377fe6d1ca13161fc6ced1375b7926476fe44a (patch)
tree93e509d813b9bea10563ef6ddcb1430dd0d987af /protocols/Tox/src/tox_transfer.h
parent5f169b7d934be793f2a3fdb5baff3ef9b6e0f7fa (diff)
Tox: file transfer is canceled when we going to offline
git-svn-id: http://svn.miranda-ng.org/main/trunk@11976 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_transfer.h')
-rw-r--r--protocols/Tox/src/tox_transfer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_transfer.h b/protocols/Tox/src/tox_transfer.h
index 7cbbffe3ee..8bc1987bea 100644
--- a/protocols/Tox/src/tox_transfer.h
+++ b/protocols/Tox/src/tox_transfer.h
@@ -67,7 +67,7 @@ struct FileTransferParam
int Cancel(Tox *tox)
{
- status = FINISHED;
+ status = CANCELED;
return tox_file_send_control(tox, friendNumber, GetDirection(), fileNumber, TOX_FILECONTROL_KILL, NULL, 0);
}