mirror of
https://github.com/sheumann/hush.git
synced 2025-01-09 09:31:07 +00:00
xargs: fix compilation breakage
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
83e49ade57
commit
3795266841
@ -373,7 +373,7 @@ static char* FAST_FUNC process_stdin_with_replace(int n_max_chars, int n_max_arg
|
|||||||
char *arg = G.argv[i];
|
char *arg = G.argv[i];
|
||||||
int count = count_strstr(arg, G.repl_str);
|
int count = count_strstr(arg, G.repl_str);
|
||||||
if (count != 0)
|
if (count != 0)
|
||||||
arg = xmalloc_substitute_string(arg, count, G.repl_str, s);
|
arg = xmalloc_substitute_string(arg, count, G.repl_str, buf);
|
||||||
store_param(arg);
|
store_param(arg);
|
||||||
dbg_msg("args[]:'%s'", arg);
|
dbg_msg("args[]:'%s'", arg);
|
||||||
i++;
|
i++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user