svn commit: trunk/busybox: archival/bz ipsvd libbb networking selin etc...
vda at busybox.net
vda at busybox.net
Sat Oct 13 21:56:00 PDT 2007
Author: vda
Date: 2007-10-13 21:55:59 -0700 (Sat, 13 Oct 2007)
New Revision: 20256
Log:
remove trailing whitespace
Modified:
trunk/busybox/archival/bz/LICENSE
trunk/busybox/archival/bz/README
trunk/busybox/archival/bz/bzlib.c
trunk/busybox/archival/bz/compress.c
trunk/busybox/archival/bz/huffman.c
trunk/busybox/ipsvd/tcpudp.c
trunk/busybox/libbb/messages.c
trunk/busybox/networking/httpd.c
trunk/busybox/networking/nameif.c
trunk/busybox/selinux/Config.in
trunk/busybox/util-linux/mount.c
Changeset:
Modified: trunk/busybox/archival/bz/LICENSE
===================================================================
--- trunk/busybox/archival/bz/LICENSE 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/archival/bz/LICENSE 2007-10-14 04:55:59 UTC (rev 20256)
@@ -15,16 +15,16 @@
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
-2. The origin of this software must not be misrepresented; you must
- not claim that you wrote the original software. If you use this
- software in a product, an acknowledgment in the product
+2. The origin of this software must not be misrepresented; you must
+ not claim that you wrote the original software. If you use this
+ software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.
-4. The name of the author may not be used to endorse or promote
- products derived from this software without specific prior written
+4. The name of the author may not be used to endorse or promote
+ products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
Modified: trunk/busybox/archival/bz/README
===================================================================
--- trunk/busybox/archival/bz/README 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/archival/bz/README 2007-10-14 04:55:59 UTC (rev 20256)
@@ -25,12 +25,12 @@
WARNING:
- This program and library (attempts to) compress data by
- performing several non-trivial transformations on it.
- Unless you are 100% familiar with *all* the algorithms
- contained herein, and with the consequences of modifying them,
- you should NOT meddle with the compression or decompression
- machinery. Incorrect changes can and very likely *will*
+ This program and library (attempts to) compress data by
+ performing several non-trivial transformations on it.
+ Unless you are 100% familiar with *all* the algorithms
+ contained herein, and with the consequences of modifying them,
+ you should NOT meddle with the compression or decompression
+ machinery. Incorrect changes can and very likely *will*
lead to disastrous loss of data.
@@ -50,16 +50,16 @@
PROGRAM UNLESS YOU ARE PREPARED TO ACCEPT THE POSSIBILITY, HOWEVER
SMALL, THAT THE DATA WILL NOT BE RECOVERABLE.
- That is not to say this program is inherently unreliable.
- Indeed, I very much hope the opposite is true. bzip2/libbzip2
+ That is not to say this program is inherently unreliable.
+ Indeed, I very much hope the opposite is true. bzip2/libbzip2
has been carefully constructed and extensively tested.
PATENTS:
- To the best of my knowledge, bzip2/libbzip2 does not use any
- patented algorithms. However, I do not have the resources
- to carry out a patent search. Therefore I cannot give any
+ To the best of my knowledge, bzip2/libbzip2 does not use any
+ patented algorithms. However, I do not have the resources
+ to carry out a patent search. Therefore I cannot give any
guarantee of the above statement.
Modified: trunk/busybox/archival/bz/bzlib.c
===================================================================
--- trunk/busybox/archival/bz/bzlib.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/archival/bz/bzlib.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -259,7 +259,7 @@
/*Bool progress_in = False;*/
/*Bool progress_out = False;*/
EState* s = strm->state;
-
+
while (1) {
if (s->state == BZ_S_OUTPUT) {
/*progress_out |=*/ copy_output_until_stop(s);
Modified: trunk/busybox/archival/bz/compress.c
===================================================================
--- trunk/busybox/archival/bz/compress.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/archival/bz/compress.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -414,7 +414,7 @@
/*
* Increment the symbol frequencies for the selected table.
*/
-/* 1% faster compress. +800 bytes */
+/* 1% faster compress. +800 bytes */
#if CONFIG_BZIP2_FEATURE_SPEED >= 4
if (nGroups == 6 && 50 == ge-gs+1) {
/*--- fast track the common case ---*/
Modified: trunk/busybox/archival/bz/huffman.c
===================================================================
--- trunk/busybox/archival/bz/huffman.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/archival/bz/huffman.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -133,7 +133,7 @@
}
AssertH(nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001);
-
+
while (nHeap > 1) {
n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap);
@@ -160,7 +160,7 @@
if (j > maxLen)
tooLong = True;
}
-
+
if (!tooLong)
break;
Modified: trunk/busybox/ipsvd/tcpudp.c
===================================================================
--- trunk/busybox/ipsvd/tcpudp.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/ipsvd/tcpudp.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -45,7 +45,7 @@
unsigned max_per_host;
unsigned cur_per_host;
unsigned cnum;
- unsigned cmax;
+ unsigned cmax;
};
#define G (*(struct globals*)&bb_common_bufsiz1)
#define verbose (G.verbose )
Modified: trunk/busybox/libbb/messages.c
===================================================================
--- trunk/busybox/libbb/messages.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/libbb/messages.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -47,7 +47,7 @@
const char bb_default_login_shell[] ALIGN1 = LIBBB_DEFAULT_LOGIN_SHELL;
/* util-linux manpage says /sbin:/bin:/usr/sbin:/usr/bin,
* but I want to save a few bytes here. Check libbb.h before changing! */
-const char bb_PATH_root_path[] ALIGN1 =
+const char bb_PATH_root_path[] ALIGN1 =
"PATH=/sbin:/usr/sbin:/bin:/usr/bin" BB_ADDITIONAL_PATH;
Modified: trunk/busybox/networking/httpd.c
===================================================================
--- trunk/busybox/networking/httpd.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/networking/httpd.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -175,7 +175,7 @@
HTTP_MOVED_TEMPORARILY,
HTTP_REQUEST_TIMEOUT,
HTTP_NOT_IMPLEMENTED,
-#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
+#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
HTTP_UNAUTHORIZED,
#endif
HTTP_NOT_FOUND,
@@ -1405,7 +1405,7 @@
/*
* Send a file response to a HTTP request, and exit
- *
+ *
* Parameters:
* const char *url The requested URL (with leading /).
* headers Don't send headers before if FALSE.
@@ -1992,7 +1992,7 @@
while (1) {
int n;
len_and_sockaddr fromAddr;
-
+
/* Wait for connections... */
fromAddr.len = LSA_SIZEOF_SA;
n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
@@ -2037,7 +2037,7 @@
while (1) {
int n;
len_and_sockaddr fromAddr;
-
+
/* Wait for connections... */
fromAddr.len = LSA_SIZEOF_SA;
n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
Modified: trunk/busybox/networking/nameif.c
===================================================================
--- trunk/busybox/networking/nameif.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/networking/nameif.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -4,7 +4,7 @@
*
* Written 2000 by Andi Kleen.
* Busybox port 2002 by Nick Fedchik <nick at fedchik.org.ua>
- * Glenn McGrath
+ * Glenn McGrath
*
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/
Modified: trunk/busybox/selinux/Config.in
===================================================================
--- trunk/busybox/selinux/Config.in 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/selinux/Config.in 2007-10-14 04:55:59 UTC (rev 20256)
@@ -109,7 +109,7 @@
default n
depends on SELINUX
help
- Enable support for change boolean.
+ Enable support for change boolean.
semanage and -P option is not supported yet.
endmenu
Modified: trunk/busybox/util-linux/mount.c
===================================================================
--- trunk/busybox/util-linux/mount.c 2007-10-14 04:48:44 UTC (rev 20255)
+++ trunk/busybox/util-linux/mount.c 2007-10-14 04:55:59 UTC (rev 20256)
@@ -675,7 +675,7 @@
}
}
-static void
+static void
get_mountport(struct pmap *pm_mnt,
struct sockaddr_in *server_addr,
long unsigned prog,
More information about the busybox-cvs
mailing list