diff options
author | Denis Vlasenko | 2007-01-11 17:20:00 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-01-11 17:20:00 +0000 |
commit | f7996f3b700a22797565e9aa57e251e6e3ac1e4d (patch) | |
tree | af4e797eef0a65f4e3dba94b325da0ec08452d36 /shell | |
parent | 3821fb13ea404d243115ff8ec161273b62826513 (diff) | |
download | busybox-f7996f3b700a22797565e9aa57e251e6e3ac1e4d.zip busybox-f7996f3b700a22797565e9aa57e251e6e3ac1e4d.tar.gz |
Trailing whitespace removal over entire tree
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 4 | ||||
-rw-r--r-- | shell/bbsh.c | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/shell/ash.c b/shell/ash.c index 10217fe..95928e9 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -2036,7 +2036,7 @@ static int is_safe_applet(char *name) { /* It isn't a bug to have non-existent applet here... */ /* ...just a waste of space... */ - static const char safe_applets[][8] = { + static const char safe_applets[][8] = { "[" USE_AWK (, "awk" ) USE_CAT (, "cat" ) @@ -3763,7 +3763,7 @@ tryexec(char *cmd, char **argv, char **envp) struct BB_applet *a; int argc = 0; char **c; - + if (strchr(cmd, '/') == NULL && (a = find_applet_by_name(cmd)) != NULL && is_safe_applet(cmd) diff --git a/shell/bbsh.c b/shell/bbsh.c index 99e4f61..7978fdc 100644 --- a/shell/bbsh.c +++ b/shell/bbsh.c @@ -1,5 +1,5 @@ /* vi: set ts=4 : - * + * * bbsh - busybox shell * * Copyright 2006 Rob Landley <rob@landley.net> @@ -51,7 +51,7 @@ // What we know about a single process. struct command { struct command *next; - int flags; // exit, suspend, && || + int flags; // exit, suspend, && || int pid; // pid (or exit code) int argc; char *argv[0]; @@ -125,9 +125,9 @@ static char *parse_pipeline(char *cmdline, struct pipeline *line) return 0; } - // Allocate next command structure if necessary + // Allocate next command structure if necessary if (!*cmd) *cmd = xzalloc(sizeof(struct command)+8*sizeof(char *)); - + // Parse next argument and add the results to argv[] end = parse_word(start, cmd); @@ -138,7 +138,7 @@ static char *parse_pipeline(char *cmdline, struct pipeline *line) start++; break; } - // handle | & < > >> << || && + // handle | & < > >> << || && } break; } @@ -160,7 +160,7 @@ static int run_pipeline(struct pipeline *line) if (cmd->argc==2 && !strcmp(cmd->argv[0],"cd")) chdir(cmd->argv[1]); else if(!strcmp(cmd->argv[0],"exit")) - exit(cmd->argc>1 ? atoi(cmd->argv[1]) : 0); + exit(cmd->argc>1 ? atoi(cmd->argv[1]) : 0); else { int status; pid_t pid=fork(); @@ -217,6 +217,6 @@ int bbsh_main(int argc, char *argv[]) } if (ENABLE_FEATURE_CLEAN_UP) free(command); } - + return 1; } |