aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/cfm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/cfm.c b/lib/cfm.c
index bdd3839c..e6fea3a6 100644
--- a/lib/cfm.c
+++ b/lib/cfm.c
@@ -532,7 +532,8 @@ cfm_print_details(struct ds *ds, const struct cfm *cfm)
struct remote_mp *rmp;
ds_put_format(ds, "---- %s ----\n", cfm->name);
- ds_put_format(ds, "MPID %"PRIu64":%s%s\n", cfm->mpid,
+ ds_put_format(ds, "MPID %"PRIu64":%s%s%s\n", cfm->mpid,
+ cfm->extended ? " extended" : "",
cfm->fault ? " fault" : "",
cfm->unexpected_recv ? " unexpected_recv" : "");