From 0eeedb97a5b28c20edcf13d37e52b8e8b98567f6 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 10 Nov 2005 03:48:56 +0000 Subject: r11626: Fix unhandled enum in case statement warnings by noting appropriately that some values aren't handled. The remaining warnings I think are actual bugs or required functionality that is missing (mostly lack of server side Unix extensions). (This used to be commit 03c7da27a06736f2a27d76e6a00a24ab54453af9) --- source4/torture/gentest.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source4/torture/gentest.c') diff --git a/source4/torture/gentest.c b/source4/torture/gentest.c index 8a2bba8497..6ce0eb543a 100644 --- a/source4/torture/gentest.c +++ b/source4/torture/gentest.c @@ -1600,6 +1600,14 @@ static BOOL cmp_fileinfo(int instance, CHECK_EQUAL(attribute_tag_information.out.attrib); CHECK_EQUAL(attribute_tag_information.out.reparse_tag); break; + + /* Unhandled levels */ + + case RAW_FILEINFO_SEC_DESC: + case RAW_FILEINFO_EA_LIST: + case RAW_FILEINFO_UNIX_BASIC: + case RAW_FILEINFO_UNIX_LINK: + break; } return True; -- cgit