summaryrefslogtreecommitdiffstats
path: root/source/smbd/ipc.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-11-15 22:11:10 +0000
committerLuke Leighton <lkcl@samba.org>1999-11-15 22:11:10 +0000
commit25c70e3c984c4fed19763ed405741e83fe14f87e (patch)
tree566fcfeb911d5e6fc7684b8d838733b50c01b8ff /source/smbd/ipc.c
parentcc2ce2b755b12cb3d97522aaee69b93309571abc (diff)
downloadsamba-25c70e3c984c4fed19763ed405741e83fe14f87e.tar.gz
samba-25c70e3c984c4fed19763ed405741e83fe14f87e.tar.xz
samba-25c70e3c984c4fed19763ed405741e83fe14f87e.zip
- added DCE/RPC "fault" PDU support.
- disabled (AGAIN) the GETDC "if (MAILSLOT\NTLOGON)" code that will get NT5rc2 to work but WILL break win95 (AGAIN). this needs _not_ to be re-enabled but to be replaced with a better mechanism. - added SMBwrite support (note: SMBwriteX already existed) as NT5rc2 is sending DCE/RPC over SMBwrite not SMBwriteX.
Diffstat (limited to 'source/smbd/ipc.c')
-rw-r--r--source/smbd/ipc.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c
index 10c859d2666..a3e7932529a 100644
--- a/source/smbd/ipc.c
+++ b/source/smbd/ipc.c
@@ -3127,11 +3127,12 @@ static void api_rpc_trans_reply(char *outbuf,
{
/* all of data was sent: no need to wait for SMBreadX calls */
mem_free_data(p->rhdr .data);
- mem_free_data(p->rdata.data);
+ mem_free_data(p->rfault .data);
+ mem_free_data(p->rdata .data);
mem_free_data(p->rdata_i.data);
- mem_free_data(p->rauth.data);
- mem_free_data(p->rverf.data);
- mem_free_data(p->rntlm.data);
+ mem_free_data(p->rauth .data);
+ mem_free_data(p->rverf .data);
+ mem_free_data(p->rntlm .data);
}
}