Fixed help for /parallel
This commit is contained in:
parent
d823586c3e
commit
4483751e08
@ -307,7 +307,7 @@ BOOL freerdp_client_print_command_line_help_ex(int argc, char** argv,
|
||||
printf("Smartcard Redirection: /smartcard:<device>\n");
|
||||
printf("Serial Port Redirection: /serial:<name>,<device>,[SerCx2|SerCx|Serial],[permissive]\n");
|
||||
printf("Serial Port Redirection: /serial:COM1,/dev/ttyS0\n");
|
||||
printf("Parallel Port Redirection: /parallel:<device>\n");
|
||||
printf("Parallel Port Redirection: /parallel:<name>,<device>\n");
|
||||
printf("Printer Redirection: /printer:<device>,<driver>\n");
|
||||
printf("\n");
|
||||
printf("Audio Output Redirection: /sound:sys:oss,dev:1,format:1\n");
|
||||
@ -476,7 +476,6 @@ BOOL freerdp_client_add_device_channel(rdpSettings* settings, int count,
|
||||
|
||||
settings->RedirectSmartCards = TRUE;
|
||||
settings->DeviceRedirection = TRUE;
|
||||
|
||||
smartcard = (RDPDR_SMARTCARD*) calloc(1, sizeof(RDPDR_SMARTCARD));
|
||||
|
||||
if (!smartcard)
|
||||
@ -725,7 +724,8 @@ error_argv:
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static char** freerdp_command_line_parse_comma_separated_values_ex(const char* name, const char* list,
|
||||
static char** freerdp_command_line_parse_comma_separated_values_ex(const char* name,
|
||||
const char* list,
|
||||
size_t* count)
|
||||
{
|
||||
char** p;
|
||||
@ -757,7 +757,8 @@ static char** freerdp_command_line_parse_comma_separated_values_ex(const char* n
|
||||
|
||||
{
|
||||
const char* it = list;
|
||||
while((it = strchr(it, ',')) != NULL)
|
||||
|
||||
while ((it = strchr(it, ',')) != NULL)
|
||||
{
|
||||
it++;
|
||||
nCommas++;
|
||||
@ -1760,6 +1761,7 @@ int freerdp_client_settings_parse_command_line_arguments(rdpSettings* settings,
|
||||
WLog_ERR(TAG, "Smart sizing and dynamic resolution are mutually exclusive options");
|
||||
return COMMAND_LINE_ERROR_UNEXPECTED_VALUE;
|
||||
}
|
||||
|
||||
settings->SupportDisplayControl = TRUE;
|
||||
settings->DynamicResolutionUpdate = TRUE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user