svn commit: trunk/busybox: archival archival/libunarchive coreutil etc...
aldot at busybox.net
aldot at busybox.net
Sun Apr 2 20:17:58 UTC 2006
Author: aldot
Date: 2006-04-02 13:17:55 -0700 (Sun, 02 Apr 2006)
New Revision: 14728
Log:
- typos: s/compatability/compatibility/g;s/compatable/compatible/g;
Modified:
trunk/busybox/Config.in
trunk/busybox/archival/Config.in
trunk/busybox/archival/libunarchive/get_header_tar.c
trunk/busybox/archival/tar.c
trunk/busybox/coreutils/cp.c
trunk/busybox/coreutils/install.c
trunk/busybox/include/libbb.h
trunk/busybox/include/usage.h
Changeset:
Modified: trunk/busybox/Config.in
===================================================================
--- trunk/busybox/Config.in 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/Config.in 2006-04-02 20:17:55 UTC (rev 14728)
@@ -345,7 +345,7 @@
bool "Disable obsolete features removed before SUSv3?"
default y
help
- This option will disable backwards compatability with SuSv2,
+ This option will disable backwards compatibility with SuSv2,
specifically, old-style numeric options ('command -1 <file>')
will not be supported in head, tail, and fold. (Note: should
yank from renice too.)
Modified: trunk/busybox/archival/Config.in
===================================================================
--- trunk/busybox/archival/Config.in 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/archival/Config.in 2006-04-02 20:17:55 UTC (rev 14728)
@@ -189,7 +189,7 @@
If you enable this option tar will be able to call uncompress,
when extracting .tar.Z archives.
-config CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
+config CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
bool " Enable support for old tar header format"
default N
depends on CONFIG_TAR
Modified: trunk/busybox/archival/libunarchive/get_header_tar.c
===================================================================
--- trunk/busybox/archival/libunarchive/get_header_tar.c 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/archival/libunarchive/get_header_tar.c 2006-04-02 20:17:55 UTC (rev 14728)
@@ -80,7 +80,7 @@
* 0's are for the old tar format
*/
if (strncmp(tar.formated.magic, "ustar", 5) != 0) {
-#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
+#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
if (strncmp(tar.formated.magic, "\0\0\0\0\0", 5) != 0)
#endif
bb_error_msg_and_die("Invalid tar magic");
@@ -144,7 +144,7 @@
/* Reserved for high performance files, treat as normal file */
case 0:
case '0':
-#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
+#ifdef CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
if (last_char_is(file_header->name, '/')) {
file_header->mode |= S_IFDIR;
} else
Modified: trunk/busybox/archival/tar.c
===================================================================
--- trunk/busybox/archival/tar.c 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/archival/tar.c 2006-04-02 20:17:55 UTC (rev 14728)
@@ -44,7 +44,7 @@
/* Tar file constants */
# define TAR_MAGIC "ustar" /* ustar and a null */
-# define TAR_VERSION " " /* Be compatable with GNU tar format */
+# define TAR_VERSION " " /* Be compatible with GNU tar format */
#define TAR_BLOCK_SIZE 512
#define TAR_MAGIC_LEN 6
Modified: trunk/busybox/coreutils/cp.c
===================================================================
--- trunk/busybox/coreutils/cp.c 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/coreutils/cp.c 2006-04-02 20:17:55 UTC (rev 14728)
@@ -46,7 +46,7 @@
}
if (flags & 64) {
/* Make -r a synonym for -R,
- * -r was marked as obsolete in SUSv3, but is included for compatability
+ * -r was marked as obsolete in SUSv3, but is included for compatibility
*/
flags |= FILEUTILS_RECUR;
}
Modified: trunk/busybox/coreutils/install.c
===================================================================
--- trunk/busybox/coreutils/install.c 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/coreutils/install.c 2006-04-02 20:17:55 UTC (rev 14728)
@@ -62,7 +62,7 @@
bb_applet_long_options = install_long_options;
bb_opt_complementally = "?:s--d:d--s";
- /* -c exists for backwards compatability, its needed */
+ /* -c exists for backwards compatibility, its needed */
flags = bb_getopt_ulflags(argc, argv, "cdpsg:m:o:", &gid_str, &mode_str, &uid_str); /* 'a' must be 2nd */
/* preserve access and modification time, this is GNU behaviour, BSD only preserves modification time */
Modified: trunk/busybox/include/libbb.h
===================================================================
--- trunk/busybox/include/libbb.h 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/include/libbb.h 2006-04-02 20:17:55 UTC (rev 14728)
@@ -218,7 +218,7 @@
int nfsmount(const char *spec, const char *node, int *flags,
char **mount_opts, int running_bg);
-/* Include our own copy of struct sysinfo to avoid binary compatability
+/* Include our own copy of struct sysinfo to avoid binary compatibility
* problems with Linux 2.4, which changed things. Grumble, grumble. */
struct sysinfo {
long uptime; /* Seconds since boot */
Modified: trunk/busybox/include/usage.h
===================================================================
--- trunk/busybox/include/usage.h 2006-04-02 20:12:31 UTC (rev 14727)
+++ trunk/busybox/include/usage.h 2006-04-02 20:17:55 UTC (rev 14728)
@@ -2743,7 +2743,7 @@
USAGE_SORT_BIG("\t-s\tstable (don't sort ties alphabetically)\n") \
"\t-u\tsuppress duplicate lines" \
USAGE_SORT_BIG("\n\t-z\tinput terminated by nulls, not newlines\n") \
- USAGE_SORT_BIG("\t-mST\tignored for GNU compatability") \
+ USAGE_SORT_BIG("\t-mST\tignored for GNU compatibility") \
""
#define sort_example_usage \
"$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" \
More information about the busybox-cvs
mailing list