diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-01-03 05:48:49 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-01-03 05:48:49 +0000 |
commit | 34b9c7cee2ef4da1fd9b52cd7ab65bf261f3a8ea (patch) | |
tree | 0f10dc811099dd8656aa56ad4ea54918d96a883b /source3/torture | |
parent | af643d5f1f9eb7e5aa10a9cfef3bd6dce38ace1d (diff) | |
download | samba-34b9c7cee2ef4da1fd9b52cd7ab65bf261f3a8ea.tar.gz samba-34b9c7cee2ef4da1fd9b52cd7ab65bf261f3a8ea.tar.bz2 samba-34b9c7cee2ef4da1fd9b52cd7ab65bf261f3a8ea.zip |
fixed ERRMAPEXTRACT torture to work with win2k
(This used to be commit 27143900e76033026ecd5a7b4525c0150f3a535d)
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 16 |
1 files changed, 5 insertions, 11 deletions
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); |