diff options
author | Andreas Schneider <asn@samba.org> | 2019-01-08 17:09:11 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2019-01-28 10:29:17 +0100 |
commit | 34ae8dc311630dab2ff182a35535ea754e020048 (patch) | |
tree | 58efdcc9cd6abee3698a36801418c28a71b9c05a /source3/torture | |
parent | 2b6706fbbee0426d0f2e0b68ef9ce5baf416b296 (diff) | |
download | samba-34ae8dc311630dab2ff182a35535ea754e020048.tar.gz |
s3:torture: Use C99 initializer for cmd_set in cmd_vfs
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/cmd_vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/cmd_vfs.c b/source3/torture/cmd_vfs.c index 3ba26031ed8..af155376e66 100644 --- a/source3/torture/cmd_vfs.c +++ b/source3/torture/cmd_vfs.c @@ -1939,7 +1939,7 @@ cleanup: struct cmd_set vfs_commands[] = { - { "VFS Commands" }, + { .name = "VFS Commands" }, { "load", cmd_load_module, "Load a module", "load <module.so>" }, { "populate", cmd_populate, "Populate a data buffer", "populate <char> <size>" }, |