svn commit: trunk/busybox: include libbb

vda at busybox.net vda at busybox.net
Mon Nov 10 10:47:47 UTC 2008


Author: vda
Date: 2008-11-10 02:47:47 -0800 (Mon, 10 Nov 2008)
New Revision: 23988

Log:
Typo fixes



Modified:
   trunk/busybox/include/usage.h
   trunk/busybox/libbb/sha1.c


Changeset:
Modified: trunk/busybox/include/usage.h
===================================================================
--- trunk/busybox/include/usage.h	2008-11-10 10:45:46 UTC (rev 23987)
+++ trunk/busybox/include/usage.h	2008-11-10 10:47:47 UTC (rev 23988)
@@ -2376,7 +2376,7 @@
        "Create MIME-encoded message\n" \
      "\nOptions:" \
      "\n	-C      Charset" \
-     "\n	-e	Tranfer encoding. Ignored. base64 is assumed" \
+     "\n	-e	Transfer encoding. Ignored. base64 is assumed" \
      "\n" \
      "\nOther options are silently ignored." \
 

Modified: trunk/busybox/libbb/sha1.c
===================================================================
--- trunk/busybox/libbb/sha1.c	2008-11-10 10:45:46 UTC (rev 23987)
+++ trunk/busybox/libbb/sha1.c	2008-11-10 10:47:47 UTC (rev 23988)
@@ -97,7 +97,7 @@
 	if ((ctx->count[0] += length) < length)
 		ctx->count[1]++;
 
-	while (length >= freeb) {	/* tranfer whole blocks while possible  */
+	while (length >= freeb) {	/* transfer whole blocks while possible  */
 		memcpy(((unsigned char *) ctx->wbuf) + pos, sp, freeb);
 		sp += freeb;
 		length -= freeb;




More information about the busybox-cvs mailing list