diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-06-16 08:39:03 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2011-06-16 09:05:31 +0200 |
commit | 75e77f9fa023d81a57e7913bcbd712eae7a677b1 (patch) | |
tree | 16a24314aa86c2f9a20a713826baee890f2b7379 /source4/torture | |
parent | 9ba10877aa558c016e2a40f209d1eaf694e47965 (diff) | |
download | samba-75e77f9fa023d81a57e7913bcbd712eae7a677b1.tar.gz samba-75e77f9fa023d81a57e7913bcbd712eae7a677b1.tar.bz2 samba-75e77f9fa023d81a57e7913bcbd712eae7a677b1.zip |
s4:ntvfs subsystems - rework it using concrete enum values
This changes commit 260bc987b00b3fff6c9b99211627b14e9bd0789a to comply
with metze's plans.
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/gentest.c | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/source4/torture/gentest.c b/source4/torture/gentest.c index 28e6953683..9b6e7fc0fd 100644 --- a/source4/torture/gentest.c +++ b/source4/torture/gentest.c @@ -2309,7 +2309,27 @@ static void gen_setfileinfo(int instance, union smb_setfileinfo *info) info->full_ea_information.in.eas = gen_ea_list(); break; - default: + case RAW_SFILEINFO_GENERIC: + case RAW_SFILEINFO_SEC_DESC: + case RAW_SFILEINFO_1025: + case RAW_SFILEINFO_1029: + case RAW_SFILEINFO_1032: + case RAW_SFILEINFO_UNIX_BASIC: + case RAW_SFILEINFO_UNIX_INFO2: + case RAW_SFILEINFO_UNIX_LINK: + case RAW_SFILEINFO_UNIX_HLINK: + case RAW_SFILEINFO_LINK_INFORMATION: + case RAW_SFILEINFO_PIPE_INFORMATION: + case RAW_SFILEINFO_VALID_DATA_INFORMATION: + case RAW_SFILEINFO_SHORT_NAME_INFORMATION: + case RAW_SFILEINFO_1027: + case RAW_SFILEINFO_1030: + case RAW_SFILEINFO_1031: + case RAW_SFILEINFO_1036: + case RAW_SFILEINFO_1041: + case RAW_SFILEINFO_1042: + case RAW_SFILEINFO_1043: + case RAW_SFILEINFO_1044: /* Untested */ break; } |