]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:rpcclient: Add missing break in switch statement
authorAndreas Schneider <asn@samba.org>
Mon, 1 Feb 2021 18:50:27 +0000 (19:50 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 1 Feb 2021 21:50:32 +0000 (21:50 +0000)
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>
source3/rpcclient/cmd_netlogon.c

index d5c1b91f2bee88b75da466c9af8c9022aebb5419..18e1862ebaab888e5a3791fba478d9f592586858 100644 (file)
@@ -102,6 +102,7 @@ static WERROR cmd_netlogon_logon_ctrl2(struct rpc_pipe_client *cli,
                        break;
                case NETLOGON_CONTROL_SET_DBFLAG:
                        data.debug_level = atoi(domain);
+                       break;
                default:
                        break;
        }