aboutsummaryrefslogtreecommitdiff
path: root/src/wine.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wine.c')
-rw-r--r--src/wine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wine.c b/src/wine.c
index 3f1e5c4..4db7d4f 100644
--- a/src/wine.c
+++ b/src/wine.c
@@ -25,7 +25,8 @@ static const struct Command wine_commands[] = {
};
static const struct Flag wine_flags[] = {
- { .name = "help", .variant = TWO, .func = wine_help, .description = "show this message"}
+ { .name = "help", .variant = TWO, .returns = 1, .func = wine_help, .description = "show this message"},
+ { .name = "no-net", .variant = TWO, .returns = 0, .func = set_no_net, .description = "run commands without commitment"}
};
COMMAND_GROUP_FUNC(wine)