Patch #: 83 Type: bug fix Priority: low Affects: sites using contrib/AufsTools/unstuffit with A/UX Submitted: William Roberts Archived: munnari.OZ.AU mac/cap.patches/cap60.patch083 Application: 'cd cap60; patch -p < cap60.patches/cap60.patch083' Summary: remove unused typedefs File: cap60/contrib/AufsTools/unstuffit/stuffit.h *** contrib/AufsTools/unstuffit/stuffit.h.orig Sun Feb 16 20:31:02 1992 --- contrib/AufsTools/unstuffit/stuffit.h Sun Feb 16 20:33:45 1992 *************** *** 1,6 **** /* StuffIt.h: contains declarations for SIT headers */ ! typedef struct sitHdr { /* 22 bytes */ OSType signature; /* = 'SIT!' -- for verification */ unsigned short numFiles; /* number of files in archive */ unsigned long arcLength; /* length of entire archive incl. --- 1,6 ---- /* StuffIt.h: contains declarations for SIT headers */ ! struct sitHdr { /* 22 bytes */ OSType signature; /* = 'SIT!' -- for verification */ unsigned short numFiles; /* number of files in archive */ unsigned long arcLength; /* length of entire archive incl. *************** *** 10,16 **** char reserved[7]; }; ! typedef struct fileHdr { /* 112 bytes */ unsigned char compRMethod; /* rsrc fork compression method */ unsigned char compDMethod; /* data fork compression method */ unsigned char fName[64]; /* a STR63 */ --- 10,16 ---- char reserved[7]; }; ! struct fileHdr { /* 112 bytes */ unsigned char compRMethod; /* rsrc fork compression method */ unsigned char compDMethod; /* data fork compression method */ unsigned char fName[64]; /* a STR63 */ *** contrib/AufsTools/unstuffit/unsit.c.orig Sun Feb 16 20:34:10 1992 --- contrib/AufsTools/unstuffit/unsit.c Sun Feb 16 20:35:00 1992 *************** *** 228,234 **** /* Useful, though not particularly Mac related, values */ typedef unsigned char byte; /* one byte, obviously */ typedef unsigned short word; /* must be 2 bytes */ - typedef unsigned long ulong; /* 4 bytes */ #define NAMELEN 63 /* maximum legal Mac file name length */ --- 228,233 ---- *** README.orig Sun Feb 16 20:38:06 1992 --- README Sun Feb 16 20:38:34 1992 *************** *** 3,9 **** (For use with AppleTalk/Ethernet bridge) o RELEASE NOTES ! o CAP Distribution 6.0, Patch Level 82, February 1992 Introduction ------------ --- 3,9 ---- (For use with AppleTalk/Ethernet bridge) o RELEASE NOTES ! o CAP Distribution 6.0, Patch Level 83, February 1992 Introduction ------------