From 34b9c7cee2ef4da1fd9b52cd7ab65bf261f3a8ea Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 3 Jan 2002 05:48:49 +0000 Subject: fixed ERRMAPEXTRACT torture to work with win2k (This used to be commit 27143900e76033026ecd5a7b4525c0150f3a535d) --- source3/torture/torture.c | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'source3/torture') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 8e70c0941f..d3256fdfb1 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2869,26 +2869,20 @@ static BOOL run_error_map_extract(int dummy) { fstring user; - if (!open_nbt_connection(&c_dos)) { - return False; - } - - if (!open_nbt_connection(&c_nt)) { + open_nbt_connection(&c_nt); + if (!cli_negprot(&c_nt)) { + printf("%s rejected the NT-error negprot (%s)\n",host, cli_errstr(&c_nt)); + cli_shutdown(&c_nt); return False; } + open_nbt_connection(&c_dos); c_dos.force_dos_errors = True; - if (!cli_negprot(&c_dos)) { printf("%s rejected the DOS-error negprot (%s)\n",host, cli_errstr(&c_dos)); cli_shutdown(&c_dos); return False; } - if (!cli_negprot(&c_nt)) { - printf("%s rejected the NT-error negprot (%s)\n",host, cli_errstr(&c_nt)); - cli_shutdown(&c_nt); - return False; - } for (error=(0xc0000000 | 0x1); error < (0xc0000000| 0xFFF); error++) { snprintf(user, sizeof(user), "%X", error); -- cgit