diff options
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/mkproto.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/mkproto.pl b/source4/script/mkproto.pl index 827304b650..51888c704f 100755 --- a/source4/script/mkproto.pl +++ b/source4/script/mkproto.pl @@ -128,7 +128,7 @@ sub handle_loadparm($$) my $name = $3; my %tmap = ( - "BOOL" => "BOOL ", + "BOOL" => "bool ", "bool" => "bool ", "CONST_STRING" => "const char *", "STRING" => "const char *", @@ -205,6 +205,7 @@ sub process_file($$$) $target->("\n$comment") if (defined($comment)); $comment = undef; + $line =~ s/BOOL /bool /g; if ( $line =~ /\(.*\)\s*$/o ) { chomp $line; $target->("$line;\n"); @@ -214,6 +215,7 @@ sub process_file($$$) $target->($line); while ($line = <FH>) { + $line =~ s/BOOL /bool /g; if ($line =~ /\)\s*$/o) { chomp $line; $target->("$line;\n"); |