Enable smartcard NLA logon

This commit is contained in:
David Fort
2022-02-01 23:23:34 +01:00
committed by akallabeth
parent a563a6836b
commit cb351a099d
29 changed files with 1532 additions and 242 deletions

View File

@@ -29,6 +29,7 @@
#include <freerdp/streamdump.h>
#include <freerdp/freerdp.h>
#include <freerdp/client/cmdline.h>
#include <freerdp/utils/smartcard_cli.h>
#include "../xf_client.h"
#include "../xfreerdp.h"
@@ -59,15 +60,14 @@ int main(int argc, char* argv[])
status = freerdp_client_settings_parse_command_line(context->settings, argc, argv, FALSE);
if (status)
{
BOOL list;
rc = freerdp_client_settings_command_line_status_print(settings, status, argc, argv);
list = settings->ListMonitors;
if (list)
if (settings->ListMonitors)
xf_list_monitors(xfc);
if (settings->ListSmartcards)
freerdp_smartcard_list(settings);
goto out;
}