diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 8e70c0941f7..d3256fdfb11 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2869,27 +2869,21 @@ static BOOL run_error_map_extract(int dummy) { fstring user; - if (!open_nbt_connection(&c_dos)) { - return False; - } - - if (!open_nbt_connection(&c_nt)) { - return False; - } - - 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; - } + 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; + } + for (error=(0xc0000000 | 0x1); error < (0xc0000000| 0xFFF); error++) { snprintf(user, sizeof(user), "%X", error);