mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 08:18:03 +02:00
cli/trivial: fix TABs for indention
This commit is contained in:
parent
8ad218e71c
commit
31669329bb
1 changed files with 12 additions and 12 deletions
|
|
@ -5546,8 +5546,8 @@ cleanup_bond:
|
||||||
const char *master = NULL;
|
const char *master = NULL;
|
||||||
const char *type = NULL;
|
const char *type = NULL;
|
||||||
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
||||||
{"type", TRUE, &type, FALSE},
|
{"type", TRUE, &type, FALSE},
|
||||||
{NULL} };
|
{NULL} };
|
||||||
|
|
||||||
/* Set global variables for use in TAB completion */
|
/* Set global variables for use in TAB completion */
|
||||||
nmc_tab_completion.con_type = NM_SETTING_BOND_SETTING_NAME;
|
nmc_tab_completion.con_type = NM_SETTING_BOND_SETTING_NAME;
|
||||||
|
|
@ -5623,9 +5623,9 @@ cleanup_team:
|
||||||
char *config = NULL;
|
char *config = NULL;
|
||||||
char *json = NULL;
|
char *json = NULL;
|
||||||
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
||||||
{"type", TRUE, &type, FALSE},
|
{"type", TRUE, &type, FALSE},
|
||||||
{"config", TRUE, &config_c, FALSE},
|
{"config", TRUE, &config_c, FALSE},
|
||||||
{NULL} };
|
{NULL} };
|
||||||
|
|
||||||
/* Set global variables for use in TAB completion */
|
/* Set global variables for use in TAB completion */
|
||||||
nmc_tab_completion.con_type = NM_SETTING_TEAM_SETTING_NAME;
|
nmc_tab_completion.con_type = NM_SETTING_TEAM_SETTING_NAME;
|
||||||
|
|
@ -5821,11 +5821,11 @@ cleanup_bridge:
|
||||||
unsigned long prio_int, path_cost_int;
|
unsigned long prio_int, path_cost_int;
|
||||||
gboolean hairpin_bool;
|
gboolean hairpin_bool;
|
||||||
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
nmc_arg_t exp_args[] = { {"master", TRUE, &master, FALSE},
|
||||||
{"type", TRUE, &type, FALSE},
|
{"type", TRUE, &type, FALSE},
|
||||||
{"priority", TRUE, &priority_c, FALSE},
|
{"priority", TRUE, &priority_c, FALSE},
|
||||||
{"path-cost", TRUE, &path_cost_c, FALSE},
|
{"path-cost", TRUE, &path_cost_c, FALSE},
|
||||||
{"hairpin", TRUE, &hairpin_c, FALSE},
|
{"hairpin", TRUE, &hairpin_c, FALSE},
|
||||||
{NULL} };
|
{NULL} };
|
||||||
|
|
||||||
/* Set global variables for use in TAB completion */
|
/* Set global variables for use in TAB completion */
|
||||||
nmc_tab_completion.con_type = NM_SETTING_BRIDGE_SETTING_NAME;
|
nmc_tab_completion.con_type = NM_SETTING_BRIDGE_SETTING_NAME;
|
||||||
|
|
@ -6187,7 +6187,7 @@ cleanup_macvlan:
|
||||||
{"pi", TRUE, &pi_c, FALSE},
|
{"pi", TRUE, &pi_c, FALSE},
|
||||||
{"vnet-hdr", TRUE, &vnet_hdr_c, FALSE},
|
{"vnet-hdr", TRUE, &vnet_hdr_c, FALSE},
|
||||||
{"multi-queue", TRUE, &multi_queue_c, FALSE},
|
{"multi-queue", TRUE, &multi_queue_c, FALSE},
|
||||||
{NULL} };
|
{NULL} };
|
||||||
|
|
||||||
if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error))
|
if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
@ -6634,7 +6634,7 @@ cleanup_vxlan:
|
||||||
if (argc) {
|
if (argc) {
|
||||||
/* Set extra connection properties. */
|
/* Set extra connection properties. */
|
||||||
nmc_arg_t exp_args[] = { {"--", FALSE, NULL, TRUE},
|
nmc_arg_t exp_args[] = { {"--", FALSE, NULL, TRUE},
|
||||||
{NULL} };
|
{NULL} };
|
||||||
|
|
||||||
if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error))
|
if (!nmc_parse_args (exp_args, FALSE, &argc, &argv, error))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue