summaryrefslogtreecommitdiff
path: root/libgpo/gpo_sec.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-07-26 17:43:53 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-03-01 04:37:42 +0100
commit721721911595c649b5cb549f19873eb8f07d2590 (patch)
tree2ccc2a8ff6c424206e17765783c6b8b964be1104 /libgpo/gpo_sec.c
parent17410725065da5040f9c6eae2383a960b7712156 (diff)
downloadsamba-721721911595c649b5cb549f19873eb8f07d2590.tar.gz
libgpo: Add FALL_THROUGH statements in gpo_sec.c
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'libgpo/gpo_sec.c')
-rw-r--r--libgpo/gpo_sec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libgpo/gpo_sec.c b/libgpo/gpo_sec.c
index af73697e56e..98ee8eb3cc9 100644
--- a/libgpo/gpo_sec.c
+++ b/libgpo/gpo_sec.c
@@ -47,13 +47,15 @@ static bool gpo_sd_check_agp_object_guid(const struct security_ace_object *objec
&ext_right_apg_guid)) {
return true;
}
- /* FALL TROUGH */
+
+ FALL_THROUGH;
case SEC_ACE_INHERITED_OBJECT_TYPE_PRESENT:
if (GUID_equal(&object->inherited_type.inherited_type,
&ext_right_apg_guid)) {
return true;
}
- /* FALL TROUGH */
+
+ FALL_THROUGH;
default:
break;
}