rename command line option --disable-security-layer-negotiation to --no-nego

This commit is contained in:
lysannkessler 2012-07-26 12:55:35 +02:00
parent 8c2d46a436
commit ecc0209bc3
1 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ int freerdp_parse_args(rdpSettings* settings, int argc, char** argv,
" --disable-full-window-drag: disables full window drag\n"
" --disable-menu-animations: disables menu animations\n"
" --disable-theming: disables theming\n"
" --disable-security-layer-negotiation: disable negotiation of security layer and force highest enabled layer\n"
" --no-nego: disable negotiation of security layer and enforce highest enabled security protocol\n"
" --no-rdp: disable Standard RDP encryption\n"
" --no-tls: disable TLS encryption\n"
" --no-nla: disable network level authentication\n"
@ -582,7 +582,7 @@ int freerdp_parse_args(rdpSettings* settings, int argc, char** argv,
return FREERDP_ARGS_PARSE_FAILURE;
}
}
else if (strcmp("--disable-security-layer-negotiation", argv[index]) == 0)
else if (strcmp("--no-nego", argv[index]) == 0)
{
settings->security_layer_negotiation = false;
}