Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/pax spelling fixes from Joerg Sonnenberger
details: https://anonhg.NetBSD.org/src/rev/72fbe47d4d86
branches: trunk
changeset: 584419:72fbe47d4d86
user: christos <christos%NetBSD.org@localhost>
date: Fri Sep 16 17:05:14 2005 +0000
description:
spelling fixes from Joerg Sonnenberger
diffstat:
bin/pax/tables.c | 8 ++++----
bin/pax/tables.h | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (52 lines):
diff -r c813cc4ecd9c -r 72fbe47d4d86 bin/pax/tables.c
--- a/bin/pax/tables.c Fri Sep 16 16:48:18 2005 +0000
+++ b/bin/pax/tables.c Fri Sep 16 17:05:14 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tables.c,v 1.23 2003/10/27 00:12:41 lukem Exp $ */
+/* $NetBSD: tables.c,v 1.24 2005/09/16 17:05:14 christos Exp $ */
/*-
* Copyright (c) 1992 Keith Muller.
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)tables.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: tables.c,v 1.23 2003/10/27 00:12:41 lukem Exp $");
+__RCSID("$NetBSD: tables.c,v 1.24 2005/09/16 17:05:14 christos Exp $");
#endif
#endif /* not lint */
@@ -67,13 +67,13 @@
* 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.
*/
diff -r c813cc4ecd9c -r 72fbe47d4d86 bin/pax/tables.h
--- a/bin/pax/tables.h Fri Sep 16 16:48:18 2005 +0000
+++ b/bin/pax/tables.h Fri Sep 16 17:05:14 2005 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tables.h,v 1.8 2003/10/13 07:41:22 agc Exp $ */
+/* $NetBSD: tables.h,v 1.9 2005/09/16 17:05:14 christos Exp $ */
/*-
* Copyright (c) 1992 Keith Muller.
@@ -77,7 +77,7 @@
typedef struct ftm {
int namelen; /* file name length */
time_t mtime; /* files last modification time */
- off_t seek; /* loacation in scratch file */
+ off_t seek; /* location in scratch file */
struct ftm *fow;
} FTM;
Home |
Main Index |
Thread Index |
Old Index