diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-08-24 09:51:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:16:42 -0500 |
commit | 46cdf9250b7dcd3551ffe845ddaf03514ff9a204 (patch) | |
tree | 715497a22c64b5a0170516e3279ec566ee9276ac /source4/torture/raw/qfileinfo.c | |
parent | b58f4364ae9f60192e05f59c3749eafba0905f51 (diff) | |
download | samba-46cdf9250b7dcd3551ffe845ddaf03514ff9a204.tar.gz samba-46cdf9250b7dcd3551ffe845ddaf03514ff9a204.tar.xz samba-46cdf9250b7dcd3551ffe845ddaf03514ff9a204.zip |
r17785: fix compiler warnings
metze
(This used to be commit 256fc452a46dfe7449c6ebddb75e0801ceae5dc4)
Diffstat (limited to 'source4/torture/raw/qfileinfo.c')
-rw-r--r-- | source4/torture/raw/qfileinfo.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/torture/raw/qfileinfo.c b/source4/torture/raw/qfileinfo.c index 7dd32d09764..7998fcf5011 100644 --- a/source4/torture/raw/qfileinfo.c +++ b/source4/torture/raw/qfileinfo.c @@ -138,6 +138,7 @@ static union smb_fileinfo *fname_find(const char *name) /* used to find hints on unknown values - and to make sure we zero-fill */ +#if 0 /* unused */ #define VAL_UNKNOWN(n1, v1) do {if (s1->n1.out.v1 != 0) { \ printf("%s/%s non-zero unknown - %u (0x%x) at %s(%d)\n", \ #n1, #v1, \ @@ -146,6 +147,7 @@ static union smb_fileinfo *fname_find(const char *name) __FILE__, __LINE__); \ ret = False; \ }} while(0) +#endif /* basic testing of all RAW_FILEINFO_* calls for each call we test that it succeeds, and where possible test @@ -352,6 +354,7 @@ BOOL torture_raw_qfileinfo(struct torture_context *torture) ret = False; \ }} while (0) +#if 0 /* unused */ #define TIME_CHECK_UNX(sname, stype, tfield) do { \ s1 = fnum_find(sname); \ if (s1 && unx_nt_time_cmp(s1->stype.out.tfield, correct_time) != 0) { \ @@ -367,6 +370,7 @@ BOOL torture_raw_qfileinfo(struct torture_context *torture) nt_time_string(mem_ctx, correct_time)); \ ret = False; \ }} while (0) +#endif /* now check that all the times that are supposed to be equal are correct */ s1 = fnum_find("BASIC_INFO"); @@ -688,6 +692,7 @@ BOOL torture_raw_qfileinfo(struct torture_context *torture) NAME_PATH_CHECK("ACCESS_INFORMATION", access_information, access_flags); #endif +#if 0 /* unused */ #define UNKNOWN_CHECK(sname, stype, tfield) do { \ s1 = fnum_find(sname); \ if (s1 && s1->stype.out.tfield != 0) { \ @@ -701,7 +706,7 @@ BOOL torture_raw_qfileinfo(struct torture_context *torture) #stype, #tfield, \ (uint_t)s1->stype.out.tfield); \ }} while (0) - +#endif /* now get a bit fancier .... */ /* when we set the delete disposition then the link count should drop |