[SCM] Samba Shared Repository - branch master updated

Stefan Metzmacher metze at samba.org
Thu Aug 12 06:33:05 MDT 2010


The branch, master has been updated
       via  a2e1f54... pidl:Samba3/ClientNDR: ignore "todo" functions
      from  6fe2166... testprogs/midltests: add some example IDL files and there midltests.exe output

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit a2e1f54b3eac810e147ee5e608c6bdee03f5a8a7
Author: Stefan Metzmacher <metze at samba.org>
Date:   Tue Aug 10 14:29:42 2010 +0200

    pidl:Samba3/ClientNDR: ignore "todo" functions
    
    metze

-----------------------------------------------------------------------

Summary of changes:
 pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm b/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
index 1738424..cb6c1f2 100644
--- a/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
+++ b/pidl/lib/Parse/Pidl/Samba3/ClientNDR.pm
@@ -495,9 +495,10 @@ sub ParseInterface($$)
 
 	$self->pidl_hdr("#ifndef __CLI_$uif\__");
 	$self->pidl_hdr("#define __CLI_$uif\__");
-	foreach (@{$if->{FUNCTIONS}}) {
-		next if ($_->{PROPERTIES}{noopnum});
-		$self->ParseFunction($if->{NAME}, $_);
+	foreach my $fn (@{$if->{FUNCTIONS}}) {
+		next if has_property($fn, "noopnum");
+		next if has_property($fn, "todo");
+		$self->ParseFunction($if->{NAME}, $fn);
 	}
 	$self->pidl_hdr("#endif /* __CLI_$uif\__ */");
 }


-- 
Samba Shared Repository


More information about the samba-cvs mailing list