From da5cbd0886a38e3e59791fd5ccd6e21f8fe9d3f2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 14 Oct 2004 09:07:41 +0000 Subject: r2968: fixed the byte order problem with the new RHS parsing on ncacn_ip_tcp (This used to be commit cc00f9b6b87783d189df00de0ce9ae92b907e21a) --- source4/build/pidl/parser.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/build') diff --git a/source4/build/pidl/parser.pm b/source4/build/pidl/parser.pm index abf5785a45..28926b7208 100644 --- a/source4/build/pidl/parser.pm +++ b/source4/build/pidl/parser.pm @@ -135,7 +135,7 @@ sub start_flags($) my $flags = util::has_property($e, "flag"); if (defined $flags) { pidl "\t{ uint32_t _flags_save_$e->{TYPE} = ndr->flags;\n"; - pidl "\tndr->flags |= $flags;\n"; + pidl "\tndr_set_flags(&ndr->flags, $flags);\n"; } } -- cgit