From c4651e3156463758ffde9a791197d62f76caf6ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 28 Aug 2020 17:25:14 +0200 Subject: [PATCH] userdbctl: add forgotten --output mode in help --- src/userdb/userdbctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/userdb/userdbctl.c b/src/userdb/userdbctl.c index 0e3204f932..0c135fae14 100644 --- a/src/userdb/userdbctl.c +++ b/src/userdb/userdbctl.c @@ -686,7 +686,8 @@ static int parse_argv(int argc, char *argv[]) { else if (streq(optarg, "help")) { puts("classic\n" "friendly\n" - "json"); + "json\n" + "table"); return 0; } else return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "Invalid --output= mode: %s", optarg);