r18844: Workaround win2k behaviour (which returns WERR_NO_MORE_ITEMS instead of
authorGünther Deschner <gd@samba.org>
Sat, 23 Sep 2006 09:13:48 +0000 (09:13 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:20:15 +0000 (14:20 -0500)
WERR_OK) in the dfs torture test.

Guenther
(This used to be commit dc1b8a3aae9f00fb7dfb0dc2fdd2ee3647ecebf1)

source4/torture/rpc/dfs.c

index 9815d71ca1a96d45cd3535227d978d9310371084..3eebfc5e5d9fffdca519c3ebb398c39bd47ca21c 100644 (file)
@@ -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;
        }