From 8336dbd901da99b387180c68e7faf65587a1364a Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Fri, 13 Nov 1998 20:39:25 +0000 Subject: 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) --- source3/rpcclient/rpcclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**************************************************************************** -- cgit