summaryrefslogtreecommitdiff
path: root/lib/ldb/ldb_map
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2021-02-01 14:21:21 +0100
committerJeremy Allison <jra@samba.org>2021-02-01 21:50:32 +0000
commit1ffacac547a8ce29c6696dda73991a8db7e34dfd (patch)
treee0dae5f3b4fd78347dde02f6ded43b2a9a73a459 /lib/ldb/ldb_map
parent02fe2d050d91a9571345eb4c03f170a98292d971 (diff)
downloadsamba-1ffacac547a8ce29c6696dda73991a8db7e34dfd.tar.gz
lib:ldb: Add missing break in switch statement
error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/ldb/ldb_map')
-rw-r--r--lib/ldb/ldb_map/ldb_map_inbound.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ldb/ldb_map/ldb_map_inbound.c b/lib/ldb/ldb_map/ldb_map_inbound.c
index 861c4c1622d..324295737da 100644
--- a/lib/ldb/ldb_map/ldb_map_inbound.c
+++ b/lib/ldb/ldb_map/ldb_map_inbound.c
@@ -262,6 +262,7 @@ static int map_search_self_callback(struct ldb_request *req, struct ldb_reply *a
LDB_ERR_OPERATIONS_ERROR);
}
+ break;
default:
/* ignore referrals */
break;