mirror of
https://github.com/samba-team/samba.git
synced 2025-08-15 13:49:28 +03:00
r18844: Workaround win2k behaviour (which returns WERR_NO_MORE_ITEMS instead of
WERR_OK) in the dfs torture test.
Guenther
(This used to be commit dc1b8a3aae
)
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
783512eca2
commit
3f028fb550
@ -200,7 +200,8 @@ static BOOL test_GetInfoLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
printf("GetInfo failed - %s\n", nt_errstr(status));
|
||||
return False;
|
||||
} else if (!W_ERROR_IS_OK(r.out.result)) {
|
||||
} else if (!W_ERROR_IS_OK(r.out.result) &&
|
||||
!W_ERROR_EQUAL(WERR_NO_MORE_ITEMS, r.out.result)) {
|
||||
printf("dfs_GetInfo failed - %s\n", win_errstr(r.out.result));
|
||||
return False;
|
||||
}
|
||||
@ -212,7 +213,7 @@ static BOOL test_GetInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, const char
|
||||
{
|
||||
BOOL ret = True;
|
||||
/* 103, 104, 105, 106 is only available on Set */
|
||||
uint16_t levels[] = {1, 2, 3, 4, 5, 6, 7, 100, 101, 102, 103, 104, 105, 106, 200, 300};
|
||||
uint16_t levels[] = {1, 2, 3, 4, 5, 6, 7, 100, 101, 102, 103, 104, 105, 106};
|
||||
int i;
|
||||
|
||||
for (i=0;i<ARRAY_SIZE(levels);i++) {
|
||||
@ -310,7 +311,8 @@ static BOOL test_EnumLevel(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, uint16_t
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
printf("Enum failed - %s\n", nt_errstr(status));
|
||||
return False;
|
||||
} else if (!W_ERROR_IS_OK(r.out.result)) {
|
||||
} else if (!W_ERROR_IS_OK(r.out.result) &&
|
||||
!W_ERROR_EQUAL(WERR_NO_MORE_ITEMS, r.out.result)) {
|
||||
printf("dfs_Enum failed - %s\n", win_errstr(r.out.result));
|
||||
return False;
|
||||
}
|
||||
|
Reference in New Issue
Block a user