home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / bbs / pics-fix.001 < prev    next >
Encoding:
Text File  |  1987-07-18  |  780 b   |  26 lines

  1.  
  2. 6/29/87  After just releasing Pics vers 1.6 we discovered a bug that
  3. affects the batch uploads (to Pics), causing the batch mode to terminate.
  4. The problem has been traced to the 'checking for duplicates' message that
  5. is printed (at both ends) for each file to be received. If you change the
  6. following code and then re-compile your Pics files the problem will be
  7. fixed. Pics 1.7 will contain this fix.
  8.  
  9. file: PICS2D.INC
  10. line: 34
  11.  
  12. presently reads:
  13.  
  14.         writeln(usr); writeln(usr,'Checking for duplicates.. wait..');
  15.  
  16. replace line 34 with the following:
  17.  
  18.         if mode<>'B' then
  19.           begin
  20.             writeln(usr); writeln(usr,'Checking for duplicates.. wait..');
  21.           end;
  22.  
  23. That's all there is to it. The message will be suppressed in batch mode.
  24.  
  25. Les Archambault
  26.