[BusyBox-cvs] busybox/coreutils cal.c, 1.9, 1.10 cmp.c, 1.9, 1.10 cut.c, 1.28, 1.29 date.c, 1.46, 1.47 df.c, 1.56, 1.57 echo.c, 1.18, 1.19 env.c, 1.10, 1.11 expr.c, 1.17, 1.18 logname.c, 1.17, 1.18 md5_sha1_sum.c, 1.7, 1.8

Erik Andersen andersen at busybox.net
Wed Apr 14 17:51:11 UTC 2004


Update of /var/cvs/busybox/coreutils
In directory nail:/tmp/cvs-serv15466/coreutils

Modified Files:
	cal.c cmp.c cut.c date.c df.c echo.c env.c expr.c logname.c 
	md5_sha1_sum.c 
Log Message:
Larry Doolittle writes:

This is a bulk spelling fix patch against busybox-1.00-pre10.
If anyone gets a corrupted copy (and cares), let me know and
I will make alternate arrangements.

Erik - please apply.

Authors - please check that I didn't corrupt any meaning.

Package importers - see if any of these changes should be
passed to the upstream authors.

I glossed over lots of sloppy capitalizations, missing apostrophes,
mixed American/British spellings, and German-style compound words.

What is "pretect redefined for test" in cmdedit.c?

Good luck on the 1.00 release!

      - Larry



Index: date.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/date.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- a/date.c	6 Apr 2004 09:38:18 -0000	1.46
+++ b/date.c	14 Apr 2004 17:51:09 -0000	1.47
@@ -42,7 +42,7 @@
 /* Input parsing code is always bulky - used heavy duty libc stuff as
    much as possible, missed out a lot of bounds checking */
 
-/* Default input handling to save suprising some people */
+/* Default input handling to save surprising some people */
 
 static struct tm *date_conv_time(struct tm *tm_time, const char *t_string)
 {

Index: echo.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/echo.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- a/echo.c	15 Mar 2004 08:28:20 -0000	1.18
+++ b/echo.c	14 Apr 2004 17:51:09 -0000	1.19
@@ -27,7 +27,7 @@
 
 /* Mar 16, 2003      Manuel Novoa III   (mjn3 at codepoet.org)
  *
- * Because of behavioral differences, implemented configureable SUSv3
+ * Because of behavioral differences, implemented configurable SUSv3
  * or 'fancy' gnu-ish behaviors.  Also, reduced size and fixed bugs.
  * 1) In handling '\c' escape, the previous version only suppressed the
  *     trailing newline.  SUSv3 specifies _no_ output after '\c'.

Index: md5_sha1_sum.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/md5_sha1_sum.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- a/md5_sha1_sum.c	27 Mar 2004 10:02:42 -0000	1.7
+++ b/md5_sha1_sum.c	14 Apr 2004 17:51:09 -0000	1.8
@@ -32,7 +32,7 @@
 #define FLAG_CHECK	2
 #define FLAG_WARN	4
 
-/* This might be usefull elsewhere */
+/* This might be useful elsewhere */
 static unsigned char *hash_bin_to_hex(unsigned char *hash_value,
 									  unsigned char hash_length)
 {

Index: cut.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/cut.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- a/cut.c	15 Mar 2004 08:28:19 -0000	1.28
+++ b/cut.c	14 Apr 2004 17:51:09 -0000	1.29
@@ -70,7 +70,7 @@
 /*
  * parse_lists() - parses a list and puts values into startpos and endpos.
  * valid list formats: N, N-, N-M, -M
- * more than one list can be seperated by commas
+ * more than one list can be separated by commas
  */
 static void parse_lists(char *lists)
 {
@@ -79,7 +79,7 @@
 	char *junk;
 	int s = 0, e = 0;
 
-	/* take apart the lists, one by one (they are seperated with commas */
+	/* take apart the lists, one by one (they are separated with commas */
 	while ((ltok = strsep(&lists, ",")) != NULL) {
 
 		/* it's actually legal to pass an empty list */

Index: logname.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/logname.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/logname.c	19 Mar 2003 09:11:33 -0000	1.17
+++ b/logname.c	14 Apr 2004 17:51:09 -0000	1.18
@@ -30,7 +30,7 @@
  * is _not_ the same.  Erik apparently made this change almost 3 years
  * ago to avoid failing when no utmp was available.  However, the
  * correct course of action wrt SUSv3 for a failing getlogin() is
- * a dianostic message and an error return.
+ * a diagnostic message and an error return.
  */
 
 #include <stdio.h>

Index: cal.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/cal.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/cal.c	15 Mar 2004 08:28:19 -0000	1.9
+++ b/cal.c	14 Apr 2004 17:51:09 -0000	1.10
@@ -65,7 +65,7 @@
 
 static int julian;
 
-/* leap year -- account for gregorian reformation in 1752 */
+/* leap year -- account for Gregorian reformation in 1752 */
 #define	leap_year(yr) \
 	((yr) <= 1752 ? !((yr) % 4) : \
 	(!((yr) % 4) && ((yr) % 100)) || !((yr) % 400))

Index: cmp.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/cmp.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- a/cmp.c	19 Mar 2003 09:11:32 -0000	1.9
+++ b/cmp.c	14 Apr 2004 17:51:09 -0000	1.10
@@ -27,7 +27,7 @@
  *
  * Original version majorly reworked for SUSv3 compliance, bug fixes, and
  * size optimizations.  Changes include:
- * 1) Now correctly distingusishes between errors and actual file differences.
+ * 1) Now correctly distinguishes between errors and actual file differences.
  * 2) Proper handling of '-' args.
  * 3) Actual error checking of i/o.
  * 4) Accept SUSv3 -l option.  Note that we use the slightly nicer gnu format

Index: env.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/env.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- a/env.c	7 Nov 2003 11:20:21 -0000	1.10
+++ b/env.c	14 Apr 2004 17:51:09 -0000	1.11
@@ -35,7 +35,7 @@
 
 /*
  * Modified by Vladimir Oleynik <andersen at codepoet.org> (C) 2003
- * - corretion "-" option usage
+ * - correct "-" option usage
  * - multiple "-u unsetenv" support
  * - GNU long option support
  * - save errno after exec failed before bb_perror_msg()

Index: df.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/df.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- a/df.c	15 Mar 2004 08:28:19 -0000	1.56
+++ b/df.c	14 Apr 2004 17:51:09 -0000	1.57
@@ -27,7 +27,7 @@
 /* Mar 16, 2003      Manuel Novoa III   (mjn3 at codepoet.org)
  *
  * Size reduction.  Removed floating point dependency.  Added error checking
- * on output.  Output stats on 0-sized filesystems if specificly listed on
+ * on output.  Output stats on 0-sized filesystems if specifically listed on
  * the command line.  Properly round *-blocks, Used, and Available quantities.
  */
 

Index: expr.c
===================================================================
RCS file: /var/cvs/busybox/coreutils/expr.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- a/expr.c	15 Mar 2004 08:28:20 -0000	1.17
+++ b/expr.c	14 Apr 2004 17:51:09 -0000	1.18
@@ -9,24 +9,24 @@
  * Copyright (c) 2000  Edward Betts <edward at debian.org>.
  * Aug 2003  Vladimir Oleynik - reduced 464 bytes.
  *
- * this program is free software; you can redistribute it and/or modify
- * it under the terms of the gnu general public license as published by
- * the free software foundation; either version 2 of the license, or
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  *
- * this program is distributed in the hope that it will be useful,
- * but without any warranty; without even the implied warranty of
- * merchantability or fitness for a particular purpose. see the gnu
- * general public license for more details.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
  *
- * you should have received a copy of the gnu general public license
- * along with this program; if not, write to the free software
- * foundation, inc., 59 temple place, suite 330, boston, ma 02111-1307 usa
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  *
  */
 
 /* This program evaluates expressions.  Each token (operator, operand,
- * parenthesis) of the expression must be a seperate argument.  The
+ * parenthesis) of the expression must be a separate argument.  The
  * parser used is a reasonably general one, though any incarnation of
  * it is language-specific.  It is especially nice for expressions.
  *




More information about the busybox-cvs mailing list