home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / protocol / appletal / 3127 < prev    next >
Encoding:
Internet Message Format  |  1992-08-18  |  4.5 KB

  1. Xref: sparky comp.protocols.appletalk:3127 comp.sys.hp:9426
  2. Newsgroups: comp.protocols.appletalk,comp.sys.hp
  3. Path: sparky!uunet!munnari.oz.au!cs.mu.OZ.AU!djh
  4. From: djh@cs.mu.OZ.AU (David Hornsby)
  5. Subject: CAP 6.0 patch 126 (for HP-UX)
  6. Message-ID: <9223217.19314@mulga.cs.mu.OZ.AU>
  7. Organization: Computer Science, University of Melbourne, Australia
  8. Date: Wed, 19 Aug 1992 07:03:33 GMT
  9. Lines: 136
  10.  
  11. The enclosed shar file contains CAP 6.0 patch 126. The patch file is also
  12. available via FTP from munnari.OZ.AU and soon via FTP from rutgers.EDU,
  13. gatekeeper.DEC.COM, ftp.kuis.kyoto-u.AC.JP and src.doc.ic.AC.UK.
  14.  
  15. The patch fixes a bug due to code missing from the final version of patch
  16. number 122 and affects AUFS use under HP-UX only. The patch is not required
  17. under other operating systems and only need be applied as part of the normal
  18. CAP source update.
  19.  
  20. The patch MUST BE APPLIED under HP-UX if your sources are at patch level
  21. 122 or greater.
  22.  
  23. Thanks to Anders Liljegren <andersl@snobben.teknikum.uu.se> for bringing
  24. this to our attention.
  25.  
  26.  - David.
  27.  
  28. #! /bin/sh
  29. # This is a shell archive.  Remove anything before this line, then unpack
  30. # it by saving it into a file and typing "sh file".  To overwrite existing
  31. # files, type "sh file -c".  You can also feed this as standard input via
  32. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  33. # will see the following message at the end:
  34. #        "End of shell archive."
  35. # Contents:  cap60.patch126
  36. # Wrapped by djh@mulga.cs.mu.OZ.AU on Wed Aug 19 16:41:13 1992
  37. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  38. if test -f 'cap60.patch126' -a "${1}" != "-c" ; then 
  39.   echo shar: Will not clobber existing file \"'cap60.patch126'\"
  40. else
  41. echo shar: Extracting \"'cap60.patch126'\" \(2561 characters\)
  42. sed "s/^X//" >'cap60.patch126' <<'END_OF_FILE'
  43. XPatch #:    126
  44. XType:        bug fix
  45. XPriority:    very high
  46. XAffects:    sites running AUFS under HP-UX OS (only)
  47. XReported:    Anders Liljegren <andersl@snobben.teknikum.uu.se>
  48. XArchived:    munnari.OZ.AU    mac/cap.patches/cap60.patch126
  49. XApplication:    'cd cap60; patch -p < cap60.patches/cap60.patch126'
  50. XSummary:    replace 3 lines of code missing from patch number 122
  51. XFile:        cap60/lib/afp/afposlock.c
  52. X
  53. X*** lib/afp/afposlock.c.orig    Thu Jul 30 14:35:16 1992
  54. X--- lib/afp/afposlock.c        Wed Aug 19 15:46:09 1992
  55. X***************
  56. X*** 1,7 ****
  57. X  /*
  58. X!  * $Author: djh $ $Date: 1992/07/30 04:35:04 $
  59. X!  * $Header: /mac/src/cap60/lib/afp/RCS/afposlock.c,v 2.6 1992/07/30 04:35:04 djh Rel djh $
  60. X!  * $Revision: 2.6 $
  61. X  */
  62. X  
  63. X  /*
  64. X--- 1,7 ----
  65. X  /*
  66. X!  * $Author: djh $ $Date: 1992/08/19 05:45:42 $
  67. X!  * $Header: /mac/src/cap60/lib/afp/RCS/afposlock.c,v 2.7 1992/08/19 05:45:42 djh Rel djh $
  68. X!  * $Revision: 2.7 $
  69. X  */
  70. X  
  71. X  /*
  72. X***************
  73. X*** 456,461 ****
  74. X--- 456,464 ----
  75. X  #  endif /* EREMOTE */
  76. X      return(FALSE);
  77. X    }
  78. X+ #   ifdef hpux
  79. X+   lseek(fd, saveoffs, SEEK_SET);
  80. X+ #   endif hpux
  81. X  #  endif /* LOCKF_ONLY */
  82. X  # endif /* end else NOFLOCK */
  83. X  #endif XENIX_LOCKING
  84. X*** lib/cap/abversion.c.orig    Mon Aug  3 02:24:19 1992
  85. X--- lib/cap/abversion.c        Wed Aug 19 15:48:01 1992
  86. X***************
  87. X*** 1,7 ****
  88. X  /*
  89. X!  * $Author: djh $ $Date: 1992/08/02 16:24:11 $
  90. X!  * $Header: /mac/src/cap60/lib/cap/RCS/abversion.c,v 2.25 1992/08/02 16:24:11 djh Rel djh $
  91. X!  * $Revision: 2.25 $
  92. X  */
  93. X  
  94. X  /*
  95. X--- 1,7 ----
  96. X  /*
  97. X!  * $Author: djh $ $Date: 1992/08/19 05:47:54 $
  98. X!  * $Header: /mac/src/cap60/lib/cap/RCS/abversion.c,v 2.26 1992/08/19 05:47:54 djh Rel djh $
  99. X!  * $Revision: 2.26 $
  100. X  */
  101. X  
  102. X  /*
  103. X***************
  104. X*** 31,37 ****
  105. X    myversion.cv_name = "CAP";
  106. X    myversion.cv_version = 6;
  107. X    myversion.cv_subversion = 0;
  108. X!   myversion.cv_patchlevel = 125;
  109. X    myversion.cv_rmonth = "July";
  110. X    myversion.cv_ryear = "1992";
  111. X    switch (lap_proto) {
  112. X--- 31,37 ----
  113. X    myversion.cv_name = "CAP";
  114. X    myversion.cv_version = 6;
  115. X    myversion.cv_subversion = 0;
  116. X!   myversion.cv_patchlevel = 126;
  117. X    myversion.cv_rmonth = "July";
  118. X    myversion.cv_ryear = "1992";
  119. X    switch (lap_proto) {
  120. X*** README.orig        Mon Aug  3 02:25:14 1992
  121. X--- README        Wed Aug 19 15:49:52 1992
  122. X***************
  123. X*** 2,8 ****
  124. X             CAP - Columbia AppleTalk Package for UNIX
  125. X  
  126. X      o RELEASE NOTES
  127. X!     o CAP Distribution 6.0, Patch Level 125, July 1992
  128. X  
  129. X  Notice
  130. X  ------
  131. X--- 2,8 ----
  132. X             CAP - Columbia AppleTalk Package for UNIX
  133. X  
  134. X      o RELEASE NOTES
  135. X!     o CAP Distribution 6.0, Patch Level 126, July 1992
  136. X  
  137. X  Notice
  138. X  ------
  139. END_OF_FILE
  140. if test 2561 -ne `wc -c <'cap60.patch126'`; then
  141.     echo shar: \"'cap60.patch126'\" unpacked with wrong size!
  142. fi
  143. # end of 'cap60.patch126'
  144. fi
  145. echo shar: End of shell archive.
  146. exit 0
  147.