diff options
author | Günther Deschner <gd@samba.org> | 2010-01-11 12:38:22 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-01-11 12:43:07 +0100 |
commit | 403dc10e8ff46282dd7f4afbd5e5f3fbcc73177d (patch) | |
tree | 0e8aa77f2a1a84d3d5b8dd839e8061535798ffbe /testprogs/win32 | |
parent | 9a1b298e3d32252dd83fd2146b578e5150a06c7b (diff) | |
download | samba-403dc10e8ff46282dd7f4afbd5e5f3fbcc73177d.tar.gz |
testprogs: fix driver levels in spoolss test.
Guenther
Diffstat (limited to 'testprogs/win32')
-rw-r--r-- | testprogs/win32/spoolss/spoolss.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testprogs/win32/spoolss/spoolss.c b/testprogs/win32/spoolss/spoolss.c index 16f45b02f34..5c77413268b 100644 --- a/testprogs/win32/spoolss/spoolss.c +++ b/testprogs/win32/spoolss/spoolss.c @@ -122,8 +122,8 @@ static BOOL test_EnumDrivers(struct torture_context *tctx, LPSTR servername, LPSTR architecture) { - DWORD levels[] = { 1, 2, 3, 4, 5, 6, 8 }; - DWORD success[] = { 1, 1, 1, 1, 1, 1, 1 }; + DWORD levels[] = { 1, 2, 3, 4, 5, 6 }; + DWORD success[] = { 1, 1, 1, 1, 1, 1 }; DWORD i; LPBYTE buffer = NULL; @@ -455,8 +455,8 @@ static BOOL test_GetPrinterDriver(struct torture_context *tctx, LPSTR architecture, HANDLE handle) { - DWORD levels[] = { 1, 2, 3, 4, 5, 6, 8, 101}; - DWORD success[] = { 1, 1, 1, 1, 1, 1, 1, 1 }; + DWORD levels[] = { 1, 2, 3, 4, 5, 6, 8 }; + DWORD success[] = { 1, 1, 1, 1, 1, 1, 1 }; DWORD i; LPBYTE buffer = NULL; |