summaryrefslogtreecommitdiff
path: root/lib/cfm.c
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-10-09 15:03:53 -0700
committerEthan Jackson <ethan@nicira.com>2011-10-11 16:48:23 -0700
commit95b0fad8d144bb80b46f675e7541943b9e70d229 (patch)
tree6049fa1c56a14e20be0433cac21b78cb45dc5890 /lib/cfm.c
parent167e393b39f3bd3d2ae5f5e0f267565c05a6b4c3 (diff)
downloadopenvswitch-95b0fad8d144bb80b46f675e7541943b9e70d229.tar.gz
cfm: Show extended mode in cfm/show appctl command.
Diffstat (limited to 'lib/cfm.c')
-rw-r--r--lib/cfm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/cfm.c b/lib/cfm.c
index bdd3839c4..e6fea3a60 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" : "");