Pulled out a coupla "FIX" comments
authorArt Cancro <ajc@citadel.org>
Fri, 16 Oct 1998 00:39:23 +0000 (00:39 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 16 Oct 1998 00:39:23 +0000 (00:39 +0000)
citadel/file_ops.c
citadel/userpurge.c

index 52e2fe2533f1201d78b00e0f320e7f1ee201e94c..bfda895eb9191d405b7768d329683880ace390a5 100644 (file)
@@ -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);
index 027d8c64c8f58c754a1133e83d77a9e7e59c401c..402b8483e517af1d9dfbeb5fe03787011f0a666b 100644 (file)
@@ -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 */
                }