File pacemaker-tools-break-statement-attrd_updater.patch of Package pacemaker.14737
commit 07f9da7e4aeba31bda1f18bfebc1f3c5ba3e5713
Author: Ken Gaillot <kgaillot@redhat.com>
Date: Mon Oct 9 16:41:16 2017 -0500
Refactor: tools: missing break statement in attrd_updater
Luckily the fall-through value had no effect in that case, but fix it
diff --git a/tools/attrd_updater.c b/tools/attrd_updater.c
index 1da166b36..47999f6ba 100644
--- a/tools/attrd_updater.c
+++ b/tools/attrd_updater.c
@@ -139,6 +139,7 @@ main(int argc, char **argv)
#if HAVE_ATOMIC_ATTRD
case 'A':
query_all = TRUE;
+ break;
case 'p':
set_bit(attr_options, attrd_opt_private);
break;