From 4900b1539167ca739f2f07a9a9e2041fb67e80c8 Mon Sep 17 00:00:00 2001 From: Konstantin Kharlamov Date: Fri, 19 Apr 2024 02:34:47 +0300 Subject: [PATCH] shadow: mention in "help" output that auth defaults to "required" It's marked as "off" currently but it is "on" by default. --- server/shadow/shadow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/shadow/shadow.c b/server/shadow/shadow.c index 14c901480..717128ca6 100644 --- a/server/shadow/shadow.c +++ b/server/shadow/shadow.c @@ -54,7 +54,7 @@ int main(int argc, char** argv) "maximum connections allowed to server, 0 to deactivate" }, { "rect", COMMAND_LINE_VALUE_REQUIRED, "", NULL, NULL, -1, NULL, "Select rectangle within monitor to share" }, - { "auth", COMMAND_LINE_VALUE_BOOL, NULL, BoolValueFalse, NULL, -1, NULL, + { "auth", COMMAND_LINE_VALUE_BOOL, NULL, BoolValueTrue, NULL, -1, NULL, "Clients must authenticate" }, { "remote-guard", COMMAND_LINE_VALUE_BOOL, NULL, BoolValueFalse, NULL, -1, NULL, "Remote credential guard" },