summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2018-03-18 16:20:04 +0100
committerMichael Brown2018-03-18 16:20:04 +0100
commitc160c9dfc0d27af6989fb450937866d9f2d5b34c (patch)
tree8bb5b0953c2db55b3d24888a734b0d6b34439281
parent[lacp] Mark link as blocked if partner is not yet up and running (diff)
downloadipxe-c160c9dfc0d27af6989fb450937866d9f2d5b34c.tar.gz
ipxe-c160c9dfc0d27af6989fb450937866d9f2d5b34c.tar.xz
ipxe-c160c9dfc0d27af6989fb450937866d9f2d5b34c.zip
[lacp] Fix debug message to match documentation
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/net/eth_slow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eth_slow.c b/src/net/eth_slow.c
index 41ce79fe..cbc22aef 100644
--- a/src/net/eth_slow.c
+++ b/src/net/eth_slow.c
@@ -92,7 +92,7 @@ eth_slow_marker_tlv_name ( uint8_t type ) {
* @ret name LACP state name
*/
static const char * eth_slow_lacp_state_name ( uint8_t state ) {
- static char state_chars[] = "AFGSRTLX";
+ static char state_chars[] = "AFGSCDLX";
unsigned int i;
for ( i = 0 ; i < 8 ; i++ ) {