summaryrefslogtreecommitdiff
path: root/ratox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratox.c')
-rw-r--r--ratox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ratox.c b/ratox.c
index c2d4cb9..738c052 100644
--- a/ratox.c
+++ b/ratox.c
@@ -928,6 +928,7 @@ frienddestroy(struct friend *f)
{
int i;
+ canceltransfer(f);
for (i = 0; i < LEN(ffiles); i++) {
if (f->dirfd != -1) {
unlinkat(f->dirfd, ffiles[i].name, 0);
@@ -936,7 +937,6 @@ frienddestroy(struct friend *f)
}
}
rmdir(f->idstr);
- canceltransfer(f);
TAILQ_REMOVE(&friendhead, f, entry);
}