1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:rpcclient: Use C99 initializer for cmd_set in cmd_fss

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Andreas Schneider 2019-01-09 15:15:18 +01:00 committed by Andreas Schneider
parent 2bec9593ba
commit 711cb03507

View File

@ -684,7 +684,9 @@ static NTSTATUS cmd_fss_recov_complete(struct rpc_pipe_client *cli,
/* List of commands exported by this module */
struct cmd_set fss_commands[] = {
{ "FSRVP" },
{
.name = "FSRVP",
},
{
.name = "fss_is_path_sup",
@ -751,5 +753,7 @@ struct cmd_set fss_commands[] = {
"allowing further shadow-copy requests",
.usage = "",
},
{ NULL }
{
.name = NULL,
},
};