diff options
author | Luiz Souza <luiz@netgate.com> | 2018-03-16 17:02:49 -0300 |
---|---|---|
committer | Luiz Souza <luiz@netgate.com> | 2018-03-16 18:53:48 -0300 |
commit | 8e8ac321ecd7b9f705ab1a19f1c61dd98da771ef (patch) | |
tree | 2569cb6e06f6ca605058d74b7b5fbfe8f1fcdd73 | |
parent | 1a95a7d50c513231cf5cc2d374f7babd09f03d2b (diff) | |
download | FreeBSD-src-8e8ac321ecd7b9f705ab1a19f1c61dd98da771ef.zip FreeBSD-src-8e8ac321ecd7b9f705ab1a19f1c61dd98da771ef.tar.gz |
Replace an old use of LAG with LAGG.
LAG is used mostly on Marvell docs, but not in common literature.
(cherry picked from commit d6ccb78ce03410d219100f2927ccf6364b7b99c5)
-rw-r--r-- | sbin/etherswitchcfg/etherswitchcfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/etherswitchcfg/etherswitchcfg.c b/sbin/etherswitchcfg/etherswitchcfg.c index 26b6ff2..007f87d 100644 --- a/sbin/etherswitchcfg/etherswitchcfg.c +++ b/sbin/etherswitchcfg/etherswitchcfg.c @@ -619,7 +619,7 @@ print_info(struct cfg *cfg) if (cfg->verbose) { if (cfg->info.es_switch_caps & ETHERSWITCH_CAPS_LAGG) printf( - "%s: %s with %d ports, %d VLAN groups and %d LAG groups\n", + "%s: %s with %d ports, %d VLAN groups and %d LAGG groups\n", c, cfg->info.es_name, cfg->info.es_nports, cfg->info.es_nvlangroups, cfg->info.es_nlaggroups); else |