home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky comp.protocols.appletalk:3127 comp.sys.hp:9426
- Newsgroups: comp.protocols.appletalk,comp.sys.hp
- Path: sparky!uunet!munnari.oz.au!cs.mu.OZ.AU!djh
- From: djh@cs.mu.OZ.AU (David Hornsby)
- Subject: CAP 6.0 patch 126 (for HP-UX)
- Message-ID: <9223217.19314@mulga.cs.mu.OZ.AU>
- Organization: Computer Science, University of Melbourne, Australia
- Date: Wed, 19 Aug 1992 07:03:33 GMT
- Lines: 136
-
- The enclosed shar file contains CAP 6.0 patch 126. The patch file is also
- available via FTP from munnari.OZ.AU and soon via FTP from rutgers.EDU,
- gatekeeper.DEC.COM, ftp.kuis.kyoto-u.AC.JP and src.doc.ic.AC.UK.
-
- The patch fixes a bug due to code missing from the final version of patch
- number 122 and affects AUFS use under HP-UX only. The patch is not required
- under other operating systems and only need be applied as part of the normal
- CAP source update.
-
- The patch MUST BE APPLIED under HP-UX if your sources are at patch level
- 122 or greater.
-
- Thanks to Anders Liljegren <andersl@snobben.teknikum.uu.se> for bringing
- this to our attention.
-
- - David.
-
- #! /bin/sh
- # This is a shell archive. Remove anything before this line, then unpack
- # it by saving it into a file and typing "sh file". To overwrite existing
- # files, type "sh file -c". You can also feed this as standard input via
- # unshar, or by typing "sh <file", e.g.. If this archive is complete, you
- # will see the following message at the end:
- # "End of shell archive."
- # Contents: cap60.patch126
- # Wrapped by djh@mulga.cs.mu.OZ.AU on Wed Aug 19 16:41:13 1992
- PATH=/bin:/usr/bin:/usr/ucb ; export PATH
- if test -f 'cap60.patch126' -a "${1}" != "-c" ; then
- echo shar: Will not clobber existing file \"'cap60.patch126'\"
- else
- echo shar: Extracting \"'cap60.patch126'\" \(2561 characters\)
- sed "s/^X//" >'cap60.patch126' <<'END_OF_FILE'
- XPatch #: 126
- XType: bug fix
- XPriority: very high
- XAffects: sites running AUFS under HP-UX OS (only)
- XReported: Anders Liljegren <andersl@snobben.teknikum.uu.se>
- XArchived: munnari.OZ.AU mac/cap.patches/cap60.patch126
- XApplication: 'cd cap60; patch -p < cap60.patches/cap60.patch126'
- XSummary: replace 3 lines of code missing from patch number 122
- XFile: cap60/lib/afp/afposlock.c
- X
- X*** lib/afp/afposlock.c.orig Thu Jul 30 14:35:16 1992
- X--- lib/afp/afposlock.c Wed Aug 19 15:46:09 1992
- X***************
- X*** 1,7 ****
- X /*
- X! * $Author: djh $ $Date: 1992/07/30 04:35:04 $
- X! * $Header: /mac/src/cap60/lib/afp/RCS/afposlock.c,v 2.6 1992/07/30 04:35:04 djh Rel djh $
- X! * $Revision: 2.6 $
- X */
- X
- X /*
- X--- 1,7 ----
- X /*
- X! * $Author: djh $ $Date: 1992/08/19 05:45:42 $
- X! * $Header: /mac/src/cap60/lib/afp/RCS/afposlock.c,v 2.7 1992/08/19 05:45:42 djh Rel djh $
- X! * $Revision: 2.7 $
- X */
- X
- X /*
- X***************
- X*** 456,461 ****
- X--- 456,464 ----
- X # endif /* EREMOTE */
- X return(FALSE);
- X }
- X+ # ifdef hpux
- X+ lseek(fd, saveoffs, SEEK_SET);
- X+ # endif hpux
- X # endif /* LOCKF_ONLY */
- X # endif /* end else NOFLOCK */
- X #endif XENIX_LOCKING
- X*** lib/cap/abversion.c.orig Mon Aug 3 02:24:19 1992
- X--- lib/cap/abversion.c Wed Aug 19 15:48:01 1992
- X***************
- X*** 1,7 ****
- X /*
- X! * $Author: djh $ $Date: 1992/08/02 16:24:11 $
- X! * $Header: /mac/src/cap60/lib/cap/RCS/abversion.c,v 2.25 1992/08/02 16:24:11 djh Rel djh $
- X! * $Revision: 2.25 $
- X */
- X
- X /*
- X--- 1,7 ----
- X /*
- X! * $Author: djh $ $Date: 1992/08/19 05:47:54 $
- X! * $Header: /mac/src/cap60/lib/cap/RCS/abversion.c,v 2.26 1992/08/19 05:47:54 djh Rel djh $
- X! * $Revision: 2.26 $
- X */
- X
- X /*
- X***************
- X*** 31,37 ****
- X myversion.cv_name = "CAP";
- X myversion.cv_version = 6;
- X myversion.cv_subversion = 0;
- X! myversion.cv_patchlevel = 125;
- X myversion.cv_rmonth = "July";
- X myversion.cv_ryear = "1992";
- X switch (lap_proto) {
- X--- 31,37 ----
- X myversion.cv_name = "CAP";
- X myversion.cv_version = 6;
- X myversion.cv_subversion = 0;
- X! myversion.cv_patchlevel = 126;
- X myversion.cv_rmonth = "July";
- X myversion.cv_ryear = "1992";
- X switch (lap_proto) {
- X*** README.orig Mon Aug 3 02:25:14 1992
- X--- README Wed Aug 19 15:49:52 1992
- X***************
- X*** 2,8 ****
- X CAP - Columbia AppleTalk Package for UNIX
- X
- X o RELEASE NOTES
- X! o CAP Distribution 6.0, Patch Level 125, July 1992
- X
- X Notice
- X ------
- X--- 2,8 ----
- X CAP - Columbia AppleTalk Package for UNIX
- X
- X o RELEASE NOTES
- X! o CAP Distribution 6.0, Patch Level 126, July 1992
- X
- X Notice
- X ------
- END_OF_FILE
- if test 2561 -ne `wc -c <'cap60.patch126'`; then
- echo shar: \"'cap60.patch126'\" unpacked with wrong size!
- fi
- # end of 'cap60.patch126'
- fi
- echo shar: End of shell archive.
- exit 0
-