diff options
Diffstat (limited to 'bin/pax/tables.c')
-rw-r--r-- | bin/pax/tables.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/pax/tables.c b/bin/pax/tables.c index 11d4d64f4f7bf..f711af64bcf9a 100644 --- a/bin/pax/tables.c +++ b/bin/pax/tables.c @@ -40,7 +40,7 @@ static char sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: tables.c,v 1.11 1998/05/15 06:27:46 charnier Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -61,13 +61,13 @@ static const char rcsid[] = * keeps. Tables are dynamically created only when they are needed. The * goal was speed and the ability to work with HUGE archives. The databases * were kept simple, but do have complex rules for when the contents change. - * As of this writing, the posix library functions were more complex than + * As of this writing, the POSIX library functions were more complex than * needed for this application (pax databases have very short lifetimes and * do not survive after pax is finished). Pax is required to handle very * large archives. These database routines carefully combine memory usage and * temporary file storage in ways which will not significantly impact runtime * performance while allowing the largest possible archives to be handled. - * Trying to force the fit to the posix databases routines was not considered + * Trying to force the fit to the POSIX databases routines was not considered * time well spent. */ @@ -508,7 +508,7 @@ chk_ftime(arcn) * Interactive rename table routines * * The interactive rename table keeps track of the new names that the user - * assignes to files from tty input. Since this map is unique for each file + * assigns to files from tty input. Since this map is unique for each file * we must store it in case there is a reference to the file later in archive * (a link). Otherwise we will be unable to find the file we know was * extracted. The remapping of these files is stored in a memory based hash @@ -762,7 +762,7 @@ add_dev(arcn) * check for a device value in the device table. If not found and the add * flag is set, it is added. This does NOT assign any mapping values, just * adds the device number as one that need to be remapped. If this device - * is alread mapped, just return with a pointer to that entry. + * is already mapped, just return with a pointer to that entry. * Return: * pointer to the entry for this device in the device map table. Null * if the add flag is not set and the device is not in the table (it is |