From 7f02de406d4a59fdaaa646ca6e28fdcb3e40a13d Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Wed, 17 Mar 1999 19:49:14 +0000 Subject: Stefan Walters: purify spotted rverf should be alloc'd to 16 bytes not 8. (This used to be commit 4bb74fcc714fccac791ce86c8882d19d704b17a1) --- source3/rpc_server/srv_pipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/rpc_server') diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c index e619797f6e..ec5b547c86 100644 --- a/source3/rpc_server/srv_pipe.c +++ b/source3/rpc_server/srv_pipe.c @@ -102,7 +102,7 @@ BOOL create_rpc_reply(pipes_struct *p, prs_init(&p->rhdr , 0x18, 4, 0, False); prs_init(&p->rauth, 1024, 4, 0, False); - prs_init(&p->rverf, 0x08, 4, 0, False); + prs_init(&p->rverf, 0x10, 4, 0, False); p->hdr.pkt_type = RPC_RESPONSE; /* mark header as an rpc response */ -- cgit