diff options
author | Michael Adam <obnox@samba.org> | 2009-09-11 14:55:52 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-11 15:31:32 +0200 |
commit | 7b0e0726310c9b5f89af653ed82266a2f02eb357 (patch) | |
tree | 6350deb62add9dfd173b0583b41f6f7263b268da /lib | |
parent | e60c775835e45cc912660ec253521a9d7f07874c (diff) | |
download | samba-7b0e0726310c9b5f89af653ed82266a2f02eb357.tar.gz samba-7b0e0726310c9b5f89af653ed82266a2f02eb357.tar.xz samba-7b0e0726310c9b5f89af653ed82266a2f02eb357.zip |
talloc:mksigs: ignore struct forward declarations.
Michael
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/talloc/script/mksigs.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/talloc/script/mksigs.pl b/lib/talloc/script/mksigs.pl index 28a2e747a07..3eb90d99dc6 100755 --- a/lib/talloc/script/mksigs.pl +++ b/lib/talloc/script/mksigs.pl @@ -121,6 +121,7 @@ while (my $LINE = <>) { next if ($LINE =~ /^typedef\s/); next if ($LINE =~ /^enum\s+[^\{\(]+\s+\{/); next if ($LINE =~ /^struct\s+[^\{\(]+\s+\{.*\}\s*;/); + next if ($LINE =~ /^struct\s+[a-zA-Z0-9_]+\s*;/); # concetenate function prototypes that stretch over multiple lines $REST = $LINE; |