From 7fc49243f35a5c9bdd8bfefba6e2833b5a812448 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 24 Jun 2005 04:25:40 +0000 Subject: r7870: fixed the RPC-SCHANNEL test. It turned out it was my const changes, as they slightly changed the semantics of value() in pidl, which broke a optimisation hack in some of our IDL files. I've changed the idl files to remove the hack for now. Sometime we need to find a better way to handle these :-) (This used to be commit 765f75ea630b13b1605409ff47a52cc11a1e496b) --- source4/librpc/idl/eventlog.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/librpc/idl/eventlog.idl') diff --git a/source4/librpc/idl/eventlog.idl b/source4/librpc/idl/eventlog.idl index 48cc9f3a54..aded89ebf6 100644 --- a/source4/librpc/idl/eventlog.idl +++ b/source4/librpc/idl/eventlog.idl @@ -18,7 +18,7 @@ typedef struct { [value(2*strlen_m(name))] uint16 name_len; - [value(name_len)] uint16 name_size; + [value(2*strlen_m(name))] uint16 name_size; unistr_noterm *name; } eventlog_String; -- cgit