home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume1 / rn / patch31 < prev    next >
Internet Message Format  |  1986-11-30  |  3KB

  1. From harvard!seismo!cbosgd!sdcrdcf!lwall Wed Nov  5 01:10:40 1986
  2. Received: by adelie.Adelie.COM (4.12/UUCP-Proj-1.0)
  3.     id AA21541; Wed, 5 Nov 86 01:10:33 est
  4. Received: by harvard.HARVARD.EDU; Tue, 4 Nov 86 22:09:55 EST
  5. Received: from cbosgd.UUCP by seismo.CSS.GOV (5.54/1.14) with UUCP 
  6.     id AA00601; Tue, 4 Nov 86 21:36:51 EST
  7. Received: by sdc.uucp (4.12/sdcrdcf)
  8.     id AA28975; Tue, 4 Nov 86 11:31:21 pst
  9. Date: Tue, 4 Nov 86 11:31:21 pst
  10. From: harvard!seismo!sdcrdcf!lwall (Larry Wall)
  11. Message-Id: <8611041931.AA28975@sdc.uucp>
  12. System: rn version 4.3
  13. Apparently-To: cbosgd!seismo!harvard!adelie!barry
  14.  
  15. Patch #: 31
  16. Priority: LOW
  17. Subject: Number of new articles arriving is miscalculated
  18. From: tonyb@tektools.UUCP (Tony Birnseth) [sort of]
  19.  
  20. Description:
  21.     When new articles arrive, rn prints a message telling the user how
  22.     many new articles have arrived.  ("nn new articles have arrived!")
  23.     The count is incorrect.
  24.  
  25. Repeat by:
  26.     Wait till this event occurs and the number of new articles reported
  27.     will be the sum of the old number of articles + the new ones that
  28.     have arrived instead of the difference between the new count and
  29.     the last know high numbered article.
  30.  
  31. Fix:    First of all, if you applied the patch Tony sent out, unapply it.
  32.     patch -R should do what you want.  Then apply the following patch.
  33.  
  34.     From rn, say "| patch -d DIR", where DIR is your rn source directory.
  35.     Outside of rn, say "cd DIR; patch <thisarticle".  If you don't have
  36.     the patch program, apply the following by hand, or get patch.
  37.  
  38.     If patch indicates that patchlevel is the wrong version, you may need
  39.     to apply one or more previous patches, or the patch may already
  40.     have been applied.  See the patchlevel file to find out what has or
  41.     has not been applied.  In any event, don't continue with the patch.
  42.  
  43. Index: patchlevel
  44. Prereq: 30
  45. 1c1
  46. < Patch #: 30
  47. ---
  48. > Patch #: 31
  49.  
  50. Index: bits.c
  51. Prereq: 4.3.1.2
  52. *** bits.c.old    Tue Sep  9 16:03:37 1986
  53. --- bits.c    Tue Sep  9 16:03:50 1986
  54. ***************
  55. *** 1,4
  56. ! /* $Header: bits.c,v 4.3.1.2 86/07/24 14:40:23 lwall Exp $
  57.    *
  58.    * $Log:    bits.c,v $
  59.    * Revision 4.3.1.2  86/07/24  14:40:23  lwall
  60.  
  61. --- 1,4 -----
  62. ! /* $Header: bits.c,v 4.3.1.3 86/09/09 16:01:43 lwall Exp $
  63.    *
  64.    * $Log:    bits.c,v $
  65.    * Revision 4.3.1.3  86/09/09  16:01:43  lwall
  66. ***************
  67. *** 1,6
  68.   /* $Header: bits.c,v 4.3.1.2 86/07/24 14:40:23 lwall Exp $
  69.    *
  70.    * $Log:    bits.c,v $
  71.    * Revision 4.3.1.2  86/07/24  14:40:23  lwall
  72.    * Gets host name from path instead of relay-version for news 2.10.3.
  73.    * 
  74.  
  75. --- 1,9 -----
  76.   /* $Header: bits.c,v 4.3.1.3 86/09/09 16:01:43 lwall Exp $
  77.    *
  78.    * $Log:    bits.c,v $
  79. +  * Revision 4.3.1.3  86/09/09  16:01:43  lwall
  80. +  * Fixed 'n more articles' bug.
  81. +  * 
  82.    * Revision 4.3.1.2  86/07/24  14:40:23  lwall
  83.    * Gets host name from path instead of relay-version for news 2.10.3.
  84.    * 
  85. ***************
  86. *** 621,628
  87.       IF(verbose)
  88.           sprintf(buf,
  89.           "%ld more article%s arrived--looking for more to kill...\n\n",
  90. !         (long)(lastart - firstart + 1),
  91. !         (lastart > firstart ? "s have" : " has" ) );
  92.       ELSE            /* my, my, how clever we are */
  93.   #endif
  94.   #ifdef TERSE
  95.  
  96. --- 624,631 -----
  97.       IF(verbose)
  98.           sprintf(buf,
  99.           "%ld more article%s arrived--looking for more to kill...\n\n",
  100. !         (long)(lastart - tmpfirst + 1),
  101. !         (lastart > tmpfirst ? "s have" : " has" ) );
  102.       ELSE            /* my, my, how clever we are */
  103.   #endif
  104.   #ifdef TERSE
  105.  
  106.