From d1154a9155fa382b92d4d34dc76c27df971c2eb1 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Fri, 16 Oct 1998 00:39:23 +0000 Subject: [PATCH] Pulled out a coupla "FIX" comments --- citadel/file_ops.c | 4 ---- citadel/userpurge.c | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/citadel/file_ops.c b/citadel/file_ops.c index 52e2fe253..bfda895eb 100644 --- a/citadel/file_ops.c +++ b/citadel/file_ops.c @@ -573,8 +573,6 @@ void cmd_read(char *cmdbuf) return; } - if (CC->dl_is_net) if (bytes>64) bytes = 64; /**** FIX ****/ - fseek(CC->download_fp,start_pos,0); fread(buf,bytes,1,CC->download_fp); cprintf("%d %d\n",BINARY_FOLLOWS,bytes); @@ -603,8 +601,6 @@ void cmd_writ(char *cmdbuf) return; } - if (CC->upload_type==UPL_NET) if (bytes > 64) bytes = 64; /*** FIX ***/ - cprintf("%d %d\n",SEND_BINARY,bytes); client_read(buf, bytes); fwrite(buf,bytes,1,CC->upload_fp); diff --git a/citadel/userpurge.c b/citadel/userpurge.c index 027d8c64c..402b8483e 100644 --- a/citadel/userpurge.c +++ b/citadel/userpurge.c @@ -54,7 +54,7 @@ void do_user_purge(struct usersupp *us) { if (us->timescalled == 0) purge = 1; if (purge == 1) { - /* FIX add the delete call here. */ + /* do the delete call */ } -- 2.39.2