mirror of
https://github.com/sheumann/hush.git
synced 2024-12-23 05:29:58 +00:00
hush: make it compile again :/
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
c0836530f1
commit
8bc7f2c5aa
@ -6174,8 +6174,8 @@ static struct pipe *parse_stream(char **pstring,
|
|||||||
else {
|
else {
|
||||||
/* It's "\<newline>". Remove trailing '\' from ctx.as_string */
|
/* It's "\<newline>". Remove trailing '\' from ctx.as_string */
|
||||||
ctx.as_string.data[--ctx.as_string.length] = '\0';
|
ctx.as_string.data[--ctx.as_string.length] = '\0';
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
case '$':
|
case '$':
|
||||||
if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
|
if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
|
||||||
@ -6915,14 +6915,14 @@ static int FAST_FUNC builtin_true(char **argv UNUSED_PARAM)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int FAST_FUNC run_applet_main(char **argv, int (*applet_main)(int argc, char **argv))
|
static int run_applet_main(char **argv, int (*applet_main_func)(int argc, char **argv))
|
||||||
{
|
{
|
||||||
int argc = 0;
|
int argc = 0;
|
||||||
while (*argv) {
|
while (*argv) {
|
||||||
argc++;
|
argc++;
|
||||||
argv++;
|
argv++;
|
||||||
}
|
}
|
||||||
return applet_main(argc, argv - argc);
|
return applet_main_func(argc, argv - argc);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int FAST_FUNC builtin_test(char **argv)
|
static int FAST_FUNC builtin_test(char **argv)
|
||||||
|
Loading…
Reference in New Issue
Block a user