diff options
author | Michael Brown | 2018-03-18 16:20:04 +0100 |
---|---|---|
committer | Michael Brown | 2018-03-18 16:20:04 +0100 |
commit | c160c9dfc0d27af6989fb450937866d9f2d5b34c (patch) | |
tree | 8bb5b0953c2db55b3d24888a734b0d6b34439281 /src | |
parent | [lacp] Mark link as blocked if partner is not yet up and running (diff) | |
download | ipxe-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>
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eth_slow.c | 2 |
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++ ) { |