summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2014-12-04 17:00:01 +0100
committerJiří Klimeš <jklimes@redhat.com>2014-12-05 09:38:40 +0100
commitd637b3efae3cf682aa431248ef4dde3bc52204be (patch)
treed445aa79a66d7bdf31cd56de58e78f7a8ea73d23
parent87f2b92da3b6775dfb21fa2973c28c31a31edcdd (diff)
downloadNetworkManager-d637b3efae3cf682aa431248ef4dde3bc52204be.tar.gz
libnm: missing break on get_property
Coverity: Defect type: MISSING_BREAK libnm/nm-dhcp-config.c:117: fallthrough: The above case falls through to this one.
-rw-r--r--libnm/nm-dhcp-config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libnm/nm-dhcp-config.c b/libnm/nm-dhcp-config.c
index 86cbdc3e3c..4a58bf27a6 100644
--- a/libnm/nm-dhcp-config.c
+++ b/libnm/nm-dhcp-config.c
@@ -114,6 +114,7 @@ get_property (GObject *object,
switch (prop_id) {
case PROP_FAMILY:
g_value_set_int (value, nm_dhcp_config_get_family (self));
+ break;
case PROP_OPTIONS:
g_value_set_boxed (value, nm_dhcp_config_get_options (self));
break;