From 96666d48a75573c47739e4d217b2aacea7841570 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 21 Sep 2010 00:41:29 +0200 Subject: pidl: remove unused async property handling metze --- pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm') diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm index 02f7c9a49b..7f958ab71c 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Parser.pm @@ -2336,7 +2336,6 @@ sub FunctionCallEntry($$) $self->pidl("\t\t(ndr_push_flags_fn_t) ndr_push_$d->{NAME},"); $self->pidl("\t\t(ndr_pull_flags_fn_t) ndr_pull_$d->{NAME},"); $self->pidl("\t\t(ndr_print_function_t) ndr_print_$d->{NAME},"); - $self->pidl("\t\t".($d->{ASYNC}?"true":"false").","); $self->pidl("\t},"); return 1; } @@ -2357,7 +2356,7 @@ sub FunctionTable($$) foreach my $d (@{$interface->{INHERITED_FUNCTIONS}},@{$interface->{FUNCTIONS}}) { $count += $self->FunctionCallEntry($d); } - $self->pidl("\t{ NULL, 0, NULL, NULL, NULL, false }"); + $self->pidl("\t{ NULL, 0, NULL, NULL, NULL }"); $self->pidl("};"); $self->pidl(""); -- cgit