1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-19 21:57:57 +03:00

r17786: remove unused macros, fix compiler warnings

metze
This commit is contained in:
Stefan Metzmacher 2006-08-24 09:53:21 +00:00 committed by Gerald (Jerry) Carter
parent 256fc452a4
commit 7670e224d4
2 changed files with 0 additions and 21 deletions

View File

@ -53,15 +53,6 @@ static struct {
ret = False; \
}} while (0)
#define CHECK_STRING(call_name, stype, field1, field2) do { \
union smb_search_data *d = find_level("SMB2_FIND_" #call_name); \
if (strcmp(io.all_info2.out.field2.s, d->stype.field1.s) != 0) { \
printf("(%s) %s/%s should be '%s' - '%s'\n", __location__, \
#call_name, #field2, \
io.all_info2.out.field2.s, d->stype.field1.s); \
ret = False; \
}} while (0)
#define CHECK_CONST_STRING(call_name, stype, field, str) do { \
union smb_search_data *d = find_level("SMB2_FIND_" #call_name); \
if (strcmp(str, d->stype.field.s) != 0) { \

View File

@ -130,18 +130,6 @@ BOOL torture_smb2_setinfo(struct torture_context *torture)
goto done; \
}} while (0)
#define CHECK_STR(call, stype, field, value) do { \
CHECK1(call); \
if (NT_STATUS_IS_OK(status) && NT_STATUS_IS_OK(status2) && strcmp(finfo2.stype.out.field, value) != 0) { \
printf("(%s) %s - %s/%s should be '%s' - '%s'\n", __location__, \
call_name, #stype, #field, \
value, \
finfo2.stype.out.field); \
torture_smb2_all_info(tree, handle); \
ret = False; \
goto done; \
}} while (0)
#define CHECK_STATUS(status, correct) do { \
if (!NT_STATUS_EQUAL(status, correct)) { \
printf("(%s) Incorrect status %s - should be %s\n", \