From ef801bae95403e96042f5d8c87085bce21436013 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 19 Jun 2015 22:35:44 +0200 Subject: [PATCH] s4:librpc/rpc: let dcerpc_ship_next_request() use DCERPC_AUTH_PAD_ALIGNMENT define BUG: https://bugzilla.samba.org/show_bug.cgi?id=11061 Signed-off-by: Stefan Metzmacher Reviewed-by: Jeremy Allison Reviewed-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- source4/librpc/rpc/dcerpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/librpc/rpc/dcerpc.c b/source4/librpc/rpc/dcerpc.c index be9a44c1c9e..3f8189d1069 100644 --- a/source4/librpc/rpc/dcerpc.c +++ b/source4/librpc/rpc/dcerpc.c @@ -1688,7 +1688,7 @@ static void dcerpc_ship_next_request(struct dcecli_connection *c) chunk_size -= sig_size; } } - chunk_size -= (chunk_size % 16); + chunk_size -= (chunk_size % DCERPC_AUTH_PAD_ALIGNMENT); pkt.ptype = DCERPC_PKT_REQUEST; pkt.call_id = req->call_id; -- 2.11.4.GIT