summaryrefslogtreecommitdiff
path: root/ovsdb/replication.c
diff options
context:
space:
mode:
authorBhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com>2017-10-01 08:57:40 +0100
committerBen Pfaff <blp@ovn.org>2017-11-03 13:38:00 -0700
commita0a4f2a5d38c5ce9e10f60a3814aa768552ceb02 (patch)
treeca64272dd1b020000b1cafe6c9cc3b0dbe5d7bdf /ovsdb/replication.c
parent36ef6dfd04fb1d4f6e81162767476b7a91083dd5 (diff)
downloadopenvswitch-a0a4f2a5d38c5ce9e10f60a3814aa768552ceb02.tar.gz
ovsdb: Remove break after OVS_NOT_REACHED.
The break statement would never be executed as OVS_NOT_REACHED() internally invokes abort() and causes process termination. Signed-off-by: Bhanuprakash Bodireddy <bhanuprakash.bodireddy@intel.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ovsdb/replication.c')
-rw-r--r--ovsdb/replication.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ovsdb/replication.c b/ovsdb/replication.c
index 47b0af19b..bac46c67f 100644
--- a/ovsdb/replication.c
+++ b/ovsdb/replication.c
@@ -874,7 +874,6 @@ replication_status(void)
break;
default:
OVS_NOT_REACHED();
- break;
}
} else {
ds_put_format(&ds, "not connected to %s", sync_from);