svn commit: trunk/busybox: editors libbb miscutils
vda at busybox.net
vda at busybox.net
Thu Jul 19 15:50:48 PDT 2007
Author: vda
Date: 2007-07-19 15:50:47 -0700 (Thu, 19 Jul 2007)
New Revision: 19165
Log:
stray trailing tabs removed
Modified:
trunk/busybox/editors/vi.c
trunk/busybox/libbb/procps.c
trunk/busybox/libbb/xfuncs.c
trunk/busybox/miscutils/devfsd.c
trunk/busybox/miscutils/runlevel.c
Changeset:
Modified: trunk/busybox/editors/vi.c
===================================================================
--- trunk/busybox/editors/vi.c 2007-07-19 21:49:30 UTC (rev 19164)
+++ trunk/busybox/editors/vi.c 2007-07-19 22:50:47 UTC (rev 19165)
@@ -414,7 +414,7 @@
if (text_size < 10240)
text_size = 10240; // have a minimum size for new files
screenbegin = dot = end = text = xzalloc(text_size);
-
+
if (fn != current_filename) {
free(current_filename);
current_filename = xstrdup(fn);
@@ -434,7 +434,7 @@
memset(mark, 0, sizeof(mark));
#endif
return rc;
-}
+}
static void edit_file(char * fn)
{
@@ -2210,7 +2210,7 @@
if (errno == EINTR)
goto ri0; // interrupted sys call
if (errno == EBADF || errno == EFAULT || errno == EINVAL
- || errno == EIO)
+ || errno == EIO)
editing = 0;
errno = 0;
}
@@ -2426,7 +2426,7 @@
* so we check fileperms too */
!(statbuf.st_mode & (S_IWUSR | S_IWGRP | S_IWOTH))))
{
- SET_READONLY_FILE(readonly_mode);
+ SET_READONLY_FILE(readonly_mode);
}
return cnt;
}
Modified: trunk/busybox/libbb/procps.c
===================================================================
--- trunk/busybox/libbb/procps.c 2007-07-19 21:49:30 UTC (rev 19164)
+++ trunk/busybox/libbb/procps.c 2007-07-19 22:50:47 UTC (rev 19165)
@@ -170,8 +170,8 @@
if (flags & PSSCAN_CONTEXT) {
if (getpidcon(sp->pid, &sp->context) < 0)
sp->context = NULL;
- }
-#endif
+ }
+#endif
filename_tail = filename + sprintf(filename, "/proc/%d", pid);
Modified: trunk/busybox/libbb/xfuncs.c
===================================================================
--- trunk/busybox/libbb/xfuncs.c 2007-07-19 21:49:30 UTC (rev 19164)
+++ trunk/busybox/libbb/xfuncs.c 2007-07-19 22:50:47 UTC (rev 19165)
@@ -670,7 +670,7 @@
int bb_ioctl_or_warn(int fd, int request, void *argp, const char *ioctl_name)
{
int ret;
-
+
ret = ioctl(fd, request, argp);
if (ret < 0)
bb_perror_msg("%s", ioctl_name);
@@ -685,7 +685,7 @@
int bb_ioctl_or_warn(int fd, int request, void *argp)
{
int ret;
-
+
ret = ioctl(fd, request, argp);
if (ret < 0)
bb_perror_msg("ioctl %#x failed", request);
Modified: trunk/busybox/miscutils/devfsd.c
===================================================================
--- trunk/busybox/miscutils/devfsd.c 2007-07-19 21:49:30 UTC (rev 19164)
+++ trunk/busybox/miscutils/devfsd.c 2007-07-19 22:50:47 UTC (rev 19165)
@@ -416,7 +416,7 @@
if (ENABLE_DEVFSD_FG_NP && no_polling)
exit(0);
-
+
if (ENABLE_DEVFSD_VERBOSE || ENABLE_DEBUG)
logmode = LOGMODE_BOTH;
else if (do_daemon == TRUE)
@@ -432,7 +432,7 @@
} else if (ENABLE_DEVFSD_FG_NP) {
setpgid(0, 0); /* Become process group leader */
}
-
+
while (TRUE) {
do_scan = do_servicing(fd, event_mask);
Modified: trunk/busybox/miscutils/runlevel.c
===================================================================
--- trunk/busybox/miscutils/runlevel.c 2007-07-19 21:49:30 UTC (rev 19164)
+++ trunk/busybox/miscutils/runlevel.c 2007-07-19 22:50:47 UTC (rev 19165)
@@ -36,7 +36,7 @@
}
puts("unknown");
-
+
if (ENABLE_FEATURE_CLEAN_UP)
endutent();
return 1;
More information about the busybox-cvs
mailing list