summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1998-11-13 20:39:25 +0000
committerLuke Leighton <lkcl@samba.org>1998-11-13 20:39:25 +0000
commit8336dbd901da99b387180c68e7faf65587a1364a (patch)
tree0f30f38bba6953f78cf7832966d031229c3287d2
parent9c3cbb8012423f49793a7caf182bbf144ba311cd (diff)
downloadsamba-8336dbd901da99b387180c68e7faf65587a1364a.tar.gz
samba-8336dbd901da99b387180c68e7faf65587a1364a.tar.bz2
samba-8336dbd901da99b387180c68e7faf65587a1364a.zip
need 32 bit status codes to be negotiated because of STUPID dos "error more
data needed" message gets treated as a serious error code (which it isn't) so the client code terminates. (This used to be commit d9b59580dcd5076d3027e364964dcd624300fe45)
-rw-r--r--source3/rpcclient/rpcclient.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index bf003893bc..80d66a3af4 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -60,7 +60,7 @@ void rpcclient_init(void)
{
bzero(smb_cli, sizeof(smb_cli));
cli_initialise(smb_cli);
- smb_cli->capabilities |= CAP_NT_SMBS;
+ smb_cli->capabilities |= CAP_NT_SMBS | CAP_STATUS32;
}
/****************************************************************************