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:
parent
2bec9593ba
commit
711cb03507
@ -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,
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user