summaryrefslogtreecommitdiff
path: root/archivers/pax/files/tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/pax/files/tables.c')
-rw-r--r--archivers/pax/files/tables.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/archivers/pax/files/tables.c b/archivers/pax/files/tables.c
index 0545671e184..8b675ca2b00 100644
--- a/archivers/pax/files/tables.c
+++ b/archivers/pax/files/tables.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tables.c,v 1.5 2004/08/21 04:20:50 jlam Exp $ */
+/* $NetBSD: tables.c,v 1.6 2005/12/01 03:00:01 minskim Exp $ */
/*-
* Copyright (c) 1992 Keith Muller.
@@ -48,7 +48,7 @@
#if 0
static char sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: tables.c,v 1.5 2004/08/21 04:20:50 jlam Exp $");
+__RCSID("$NetBSD: tables.c,v 1.6 2005/12/01 03:00:01 minskim Exp $");
#endif
#endif /* not lint */
@@ -97,13 +97,13 @@ __RCSID("$NetBSD: tables.c,v 1.5 2004/08/21 04:20:50 jlam Exp $");
* 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 database routines was not considered
+ * Trying to force the fit to the POSIX database routines was not considered
* time well spent.
*/