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

  1. System: rn version 4.3
  2. Patch #: 15
  3. Priority: LOW
  4. Subject: shouldn't have included sys/types.h twice
  5. >From: 5432dh@homxb.UUCP (David Himber)
  6.  
  7. Description:
  8.     A previous patch made ndir.c include sys/types.h.  Unfortunately,
  9.     common.h already includes it, and this gives some compilers
  10.     indigestion.  I guess our compiler is too forgiving.
  11.  
  12. Fix:    From rn, say "| patch -d DIR", where DIR is your rn source 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: 14
  23. 1c1
  24. < Patch #: 14
  25. ---
  26. > Patch #: 15
  27.  
  28. Index: ndir.c
  29. Prereq: 4.3.1.2
  30. *** ndir.c.old    Thu May 23 11:19:59 1985
  31. --- ndir.c    Thu May 23 11:20:04 1985
  32. ***************
  33. *** 1,4
  34. ! /* $Header: ndir.c,v 4.3.1.2 85/05/15 14:46:00 lwall Exp $
  35.    *
  36.    * $Log:    ndir.c,v $
  37.    * Revision 4.3.1.2  85/05/15  14:46:00  lwall
  38.  
  39. --- 1,4 -----
  40. ! /* $Header: ndir.c,v 4.3.1.3 85/05/23 11:19:24 lwall Exp $
  41.    *
  42.    * $Log:    ndir.c,v $
  43.    * Revision 4.3.1.3  85/05/23  11:19:24  lwall
  44. ***************
  45. *** 1,6
  46.   /* $Header: ndir.c,v 4.3.1.2 85/05/15 14:46:00 lwall Exp $
  47.    *
  48.    * $Log:    ndir.c,v $
  49.    * Revision 4.3.1.2  85/05/15  14:46:00  lwall
  50.    * Changed short to ino_t, which may be ushort on some systems.
  51.    * 
  52.  
  53. --- 1,9 -----
  54.   /* $Header: ndir.c,v 4.3.1.3 85/05/23 11:19:24 lwall Exp $
  55.    *
  56.    * $Log:    ndir.c,v $
  57. +  * Revision 4.3.1.3  85/05/23  11:19:24  lwall
  58. +  * Oops, shouldn't have included sys/types.h again.
  59. +  * 
  60.    * Revision 4.3.1.2  85/05/15  14:46:00  lwall
  61.    * Changed short to ino_t, which may be ushort on some systems.
  62.    * 
  63. ***************
  64. *** 18,24
  65.   #include "ndir.h"
  66.   
  67.   #ifdef USENDIR
  68. - #include <sys/types.h>
  69.   /*
  70.    * support for Berkeley directory reading routine on a V7 file system
  71.    */
  72.  
  73. --- 21,26 -----
  74.   #include "ndir.h"
  75.   
  76.   #ifdef USENDIR
  77.   /*
  78.    * support for Berkeley directory reading routine on a V7 file system
  79.    */
  80.  
  81.  
  82.