diff options
author | Denys Vlasenko | 2017-08-15 15:27:41 +0200 |
---|---|---|
committer | Denys Vlasenko | 2017-08-15 15:27:41 +0200 |
commit | 4476c703015d026dfd8057a28010c33943aa2a9c (patch) | |
tree | 775ebe9ebf37329215c24fe57c25d72a348b7ffb | |
parent | 0485b677d2ccd8cd60579446cd1addcb4f322db3 (diff) | |
download | busybox-4476c703015d026dfd8057a28010c33943aa2a9c.zip busybox-4476c703015d026dfd8057a28010c33943aa2a9c.tar.gz |
ash,hush: comment and debug tweaks, no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/ash.c | 5 | ||||
-rw-r--r-- | shell/hush.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 224d776..58999fa 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -7704,8 +7704,9 @@ static int patmatch(char *pattern, const char *string) { char *p = preglob(pattern, 0); - //bb_error_msg("fnmatch(pattern:'%s',str:'%s')", p, string); - return pmatch(p, string); + int r = pmatch(p, string); + //bb_error_msg("!fnmatch(pattern:'%s',str:'%s',0):%d", p, string, r); + return r; } /* diff --git a/shell/hush.c b/shell/hush.c index 517b8c1..42f95ef 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -9948,7 +9948,7 @@ Test that VAR is a valid variable name? c = '?'; } - /* Set OPTIND */ + /* Set VAR and OPTIND */ cbuf[0] = c; set_local_var_from_halves(var, cbuf); set_local_var_from_halves("OPTIND", utoa(optind)); |