]> code.citadel.org Git - citadel.git/commitdiff
* Commented out the call to the 'high speed download' function and
authorArt Cancro <ajc@citadel.org>
Sat, 22 Nov 2003 03:30:14 +0000 (03:30 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 22 Nov 2003 03:30:14 +0000 (03:30 +0000)
  uncommented the call to the original 'chatty' download function.  Some
  users were reporting lockups.

citadel/ChangeLog
citadel/citadel_ipc.c

index a4929a0945a27010c3273e259f0e721a72ade85e..878295f6ff86523b8abeec9786f8ea8e2f98121f 100644 (file)
@@ -1,4 +1,9 @@
  $Log$
+ Revision 611.9  2003/11/22 03:30:14  ajc
+ * Commented out the call to the 'high speed download' function and
+   uncommented the call to the original 'chatty' download function.  Some
+   users were reporting lockups.
+
  Revision 611.8  2003/11/14 20:15:44  ajc
  * Reversed the previous change because it made things b0rken
 
@@ -5087,3 +5092,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index ebc6e1936ab233b55d32eaca1da448893861a0af..16e7ecbde02219752e5f3518c37ac24723e94b45 100644 (file)
@@ -1154,8 +1154,14 @@ int CtdlIPCFileDownload(CtdlIPC *ipc, const char *filename, void **buf,
                bytes = extract_long(cret, 0);
                last_mod = extract_int(cret, 1);
                extract(mimetype, cret, 2);
-/*             ret = CtdlIPCReadDownload(ipc, buf, bytes, resume, progress_gauge_callback, cret); */
-               ret = CtdlIPCHighSpeedReadDownload(ipc, buf, bytes, resume, progress_gauge_callback, cret);
+
+               ret = CtdlIPCReadDownload(ipc, buf, bytes, resume,
+                                       progress_gauge_callback, cret);
+               /*
+               ret = CtdlIPCHighSpeedReadDownload(ipc, buf, bytes, resume,
+                                       progress_gauge_callback, cret);
+               */
+
                ret = CtdlIPCEndDownload(ipc, cret);
                if (ret / 100 == 2)
                        sprintf(cret, "%d|%ld|%s|%s", (int)bytes, last_mod,