src/ft.c

changeset 13595
191c2d12a00c
parent 13220
4eca54b95034
child 13599
b6369e541654
--- a/src/ft.c	Fri Apr 07 05:12:51 2006 +0000
+++ b/src/ft.c	Fri Apr 07 05:14:16 2006 +0000
@@ -431,6 +431,7 @@
 	buddy = gaim_find_buddy(account, xfer->who);
 
 	if (type == GAIM_XFER_SEND) {
+		/* Sending a file */
 		/* Check the filename. */
 #ifdef _WIN32
 		if (g_strrstr(filename, "../") || g_strrstr(filename, "..\\")) {
@@ -468,6 +469,7 @@
 		g_free(msg);
 	}
 	else {
+		/* Receiving a file */
 		xfer->status = GAIM_XFER_STATUS_ACCEPTED;
 		gaim_xfer_set_local_filename(xfer, filename);
 
@@ -970,7 +972,7 @@
 	g_return_if_fail(xfer != NULL);
 
 	/* See if we are actually trying to cancel this. */
-	if (gaim_xfer_get_status(xfer) != GAIM_XFER_STATUS_DONE) {
+	if (!gaim_xfer_is_completed(xfer)) {
 		gaim_xfer_cancel_local(xfer);
 		return;
 	}

mercurial