summaryrefslogtreecommitdiff
path: root/lib/ldb/ldb_map
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-07-27 15:19:23 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-03-01 04:37:41 +0100
commit9d2296e070157ba9d4d4f80714ba8b1ad6691117 (patch)
treef069c6116bfad48019e4f92d977cc258cd832e82 /lib/ldb/ldb_map
parent3429e9d9e59706ff2d17989530b67c74f80b879e (diff)
downloadsamba-9d2296e070157ba9d4d4f80714ba8b1ad6691117.tar.gz
lib:ldb: Add FALL_THROUGH statements in ldb_map/ldb_map.c
Diffstat (limited to 'lib/ldb/ldb_map')
-rw-r--r--lib/ldb/ldb_map/ldb_map.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ldb/ldb_map/ldb_map.c b/lib/ldb/ldb_map/ldb_map.c
index f2a86fedd45..b453dff80d2 100644
--- a/lib/ldb/ldb_map/ldb_map.c
+++ b/lib/ldb/ldb_map/ldb_map.c
@@ -523,7 +523,8 @@ struct ldb_dn *ldb_dn_map_local(struct ldb_module *module, void *mem_ctx, struct
"used in DN!", ldb_dn_get_component_name(dn, i));
goto failed;
}
- /* fall through */
+
+ FALL_THROUGH;
case LDB_MAP_KEEP:
case LDB_MAP_RENAME:
case LDB_MAP_RENDROP:
@@ -599,7 +600,8 @@ struct ldb_dn *ldb_dn_map_remote(struct ldb_module *module, void *mem_ctx, struc
"used in DN!", ldb_dn_get_component_name(dn, i));
goto failed;
}
- /* fall through */
+
+ FALL_THROUGH;
case LDB_MAP_KEEP:
case LDB_MAP_RENAME:
case LDB_MAP_RENDROP: