home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume1 / rn / patch21 < prev    next >
Text File  |  1986-11-30  |  2KB  |  83 lines

  1. System: rn version 4.3
  2. Patch #: 21
  3. Priority: LOW
  4. Subject: %d that should be %ld
  5. >From: joey@teneron.UUCP
  6.  
  7. Description:
  8.     On systems that have toread[] declared as array of shorts, the 'L'
  9.     command doesn't print number of unread articles correctly.
  10.  
  11. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source
  12. directory.
  13.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  14.     the patch program, apply the following by hand, or get patch.
  15.  
  16.     If patch indicates that patchlevel is the wrong version, you may need
  17.     to apply one or more previous patches, or the patch may already
  18.     have been applied.  See the patchlevel file to find out what has or
  19.     has not been applied.  In any event, don't continue with the patch.
  20.  
  21. Index: patchlevel
  22. Prereq: 20
  23. 1c1
  24. < Patch #: 20
  25. ---
  26. > Patch #: 21
  27.  
  28. Index: rcstuff.c
  29. Prereq: 4.3.1.2
  30. *** rcstuff.c.old    Wed May 29 09:15:13 1985
  31. --- rcstuff.c    Wed May 29 09:15:22 1985
  32. ***************
  33. *** 1,4
  34. ! /* $Header: rcstuff.c,v 4.3.1.2 85/05/17 11:40:08 lwall Exp $
  35.    *
  36.    * $Log:    rcstuff.c,v $
  37.    * Revision 4.3.1.2  85/05/17  11:40:08  lwall
  38.  
  39. --- 1,4 -----
  40. ! /* $Header: rcstuff.c,v 4.3.1.3 85/05/29 09:13:25 lwall Exp $
  41.    *
  42.    * $Log:    rcstuff.c,v $
  43.    * Revision 4.3.1.3  85/05/29  09:13:25  lwall
  44. ***************
  45. *** 1,6
  46.   /* $Header: rcstuff.c,v 4.3.1.2 85/05/17 11:40:08 lwall Exp $
  47.    *
  48.    * $Log:    rcstuff.c,v $
  49.    * Revision 4.3.1.2  85/05/17  11:40:08  lwall
  50.    * Sped up "rn -c" by not mallocing unnecessarily.
  51.    * 
  52.  
  53. --- 1,9 -----
  54.   /* $Header: rcstuff.c,v 4.3.1.3 85/05/29 09:13:25 lwall Exp $
  55.    *
  56.    * $Log:    rcstuff.c,v $
  57. +  * Revision 4.3.1.3  85/05/29  09:13:25  lwall
  58. +  * %d that should be %ld.
  59. +  * 
  60.    * Revision 4.3.1.2  85/05/17  11:40:08  lwall
  61.    * Sped up "rn -c" by not mallocing unnecessarily.
  62.    * 
  63. ***************
  64. *** 612,618
  65.           set_toread(i);
  66.       *(rcline[i] + rcnums[i] - 1) = rcchar[i];
  67.       if (toread[i] > 0)
  68. !         sprintf(tmpbuf,"%3d %6d   ",i,toread[i]);
  69.       else
  70.           sprintf(tmpbuf,"%3d %7s  ",i,status[-toread[i]]);
  71.       safecpy(tmpbuf+13,rcline[i],2034);
  72.  
  73. --- 615,621 -----
  74.           set_toread(i);
  75.       *(rcline[i] + rcnums[i] - 1) = rcchar[i];
  76.       if (toread[i] > 0)
  77. !         sprintf(tmpbuf,"%3d %6ld   ",i,(long)toread[i]);
  78.       else
  79.           sprintf(tmpbuf,"%3d %7s  ",i,status[-toread[i]]);
  80.       safecpy(tmpbuf+13,rcline[i],2034);
  81.  
  82.  
  83.