From: Daniel Lenski Date: Fri, 1 May 2020 18:49:25 +0000 (-0700) Subject: stop asking users to report unexpected GP login argument arg[20]="unknown" X-Git-Tag: v8.10~6^2~1 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=0ff94dff5f96ebd88f81f99cfcf5beb9abc777d1;p=users%2Fdwmw2%2Fopenconnect.git stop asking users to report unexpected GP login argument arg[20]="unknown" We don't know what this one means, but newer GP servers always send it and it's basically uninteresting. Signed-off-by: Daniel Lenski --- diff --git a/auth-globalprotect.c b/auth-globalprotect.c index 541e705e..5185d474 100644 --- a/auth-globalprotect.c +++ b/auth-globalprotect.c @@ -300,6 +300,7 @@ static const struct gp_login_arg gp_login_args[] = { { .opt="portal-prelogonuserauthcookie", .show=1}, { .unknown=1 }, { .opt="usually-equals-4", .show=1 }, /* newer servers send "4" here, meaning unknown */ + { .opt="usually-equals-unknown", .show=1 }, /* newer servers send "unknown" here */ }; static const int gp_login_nargs = (sizeof(gp_login_args)/sizeof(*gp_login_args));