1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-25 17:57:42 +03:00

s3:rpcclient: 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>
This commit is contained in:
Andreas Schneider 2021-02-01 19:50:27 +01:00 committed by Jeremy Allison
parent 4b398bb476
commit b549fdb6da

View 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;
}